diff options
author | Alexis211 <alexis211@gmail.com> | 2009-12-20 16:30:30 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-12-20 16:30:30 +0100 |
commit | 13d720389a01161a327a30918ad7ac9eec4a3d6c (patch) | |
tree | e1b6ebb12f00e476284684c8deb4a513c4960e2a /Source/Kernel | |
parent | 2d3c5a9c47d99c8f4f5561f9eae16497c1cde63a (diff) | |
download | Melon-13d720389a01161a327a30918ad7ac9eec4a3d6c.tar.gz Melon-13d720389a01161a327a30918ad7ac9eec4a3d6c.zip |
[not tested] Introduced StreamApp.class
Diffstat (limited to 'Source/Kernel')
-rw-r--r-- | Source/Kernel/VTManager/FileVT.class.cpp | 2 |
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(); } |