aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/wage.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/wage/wage.cpp b/engines/wage/wage.cpp
index 8d5a1e088f..13489d2712 100644
--- a/engines/wage/wage.cpp
+++ b/engines/wage/wage.cpp
@@ -219,7 +219,11 @@ void WageEngine::setMenu(Common::String menu) {
}
void WageEngine::appendText(const char *str) {
- _gui->appendText(str);
+ Common::String s(str);
+
+ s += '\n';
+
+ _gui->appendText(s.c_str());
_inputText.clear();
}