aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2016-01-05 19:31:25 +0100
committerEugene Sandulenko2016-01-05 19:31:25 +0100
commit57372c7375b992cd03666b638626a52af5b0aa34 (patch)
tree789a7ad301bb580ed7e686dc78b4bcf6a9976217
parent8763ca48416287eb61863f90d856aa65e79abc71 (diff)
downloadscummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.tar.gz
scummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.tar.bz2
scummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.zip
WAGE: Fix console clearing
-rw-r--r--engines/wage/gui.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index 7afcf2299e..d4eb2b041a 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -213,6 +213,8 @@ const Graphics::Font *Gui::getTitleFont() {
void Gui::clearOutput() {
_out.clear();
+ _lines.clear();
+ _consoleFullRedraw = true;
}
void Gui::appendText(String &str) {