summaryrefslogtreecommitdiff
path: root/Source/Kernel/VTManager/FileVT.class.cpp
diff options
context:
space:
mode:
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();
}