diff options
author | Eugene Sandulenko | 2016-01-05 19:31:25 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-01-05 19:31:25 +0100 |
commit | 57372c7375b992cd03666b638626a52af5b0aa34 (patch) | |
tree | 789a7ad301bb580ed7e686dc78b4bcf6a9976217 | |
parent | 8763ca48416287eb61863f90d856aa65e79abc71 (diff) | |
download | scummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.tar.gz scummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.tar.bz2 scummvm-rg350-57372c7375b992cd03666b638626a52af5b0aa34.zip |
WAGE: Fix console clearing
-rw-r--r-- | engines/wage/gui.cpp | 2 |
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) { |