summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/FileVT.class.cpp
diff options
context:
space:
mode:
authorAlexis211 <alexis211@gmail.com>2009-12-20 16:30:30 +0100
committerAlexis211 <alexis211@gmail.com>2009-12-20 16:30:30 +0100
commit13d720389a01161a327a30918ad7ac9eec4a3d6c (patch)
treee1b6ebb12f00e476284684c8deb4a513c4960e2a /Source/Kernel/VTManager/FileVT.class.cpp
parent2d3c5a9c47d99c8f4f5561f9eae16497c1cde63a (diff)
downloadMelon-13d720389a01161a327a30918ad7ac9eec4a3d6c.tar.gz
Melon-13d720389a01161a327a30918ad7ac9eec4a3d6c.zip
[not tested] Introduced StreamApp.class
Diffstat (limited to 'Source/Kernel/VTManager/FileVT.class.cpp')
-rw-r--r--Source/Kernel/VTManager/FileVT.class.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Kernel/VTManager/FileVT.class.cpp b/Source/Kernel/VTManager/FileVT.class.cpp
index 5469fbd..24a1b63 100644
--- a/Source/Kernel/VTManager/FileVT.class.cpp
+++ b/Source/Kernel/VTManager/FileVT.class.cpp
@@ -39,7 +39,7 @@ keypress_t FileVT::getKeypress(bool show, bool block) {
ret.hascmd = true;
ret.command = KBDC_ENTER;
if (m_file.eof()) {
- m_buffer = ".";
+ m_buffer = EOF;
} else {
m_buffer = m_file.readLine();
}