aboutsummaryrefslogtreecommitdiff
path: root/engines/wage
diff options
context:
space:
mode:
authorEugene Sandulenko2016-04-12 19:45:54 +0200
committerEugene Sandulenko2016-04-12 19:45:54 +0200
commite2876f2910ec64bfb8dc83d9d81a4b05c39c9675 (patch)
treec0c110e1d9db83e70d9edf6177e75d21bc10118d /engines/wage
parent01fb992097e525cfd2932e942d7b52dbb3bc3a5d (diff)
downloadscummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.tar.gz
scummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.tar.bz2
scummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.zip
WAGE: Fix console redrawing when desktop is redrawn
Diffstat (limited to 'engines/wage')
-rw-r--r--engines/wage/gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp
index bd74855a3e..ae4995ac67 100644
--- a/engines/wage/gui.cpp
+++ b/engines/wage/gui.cpp
@@ -297,7 +297,7 @@ void Gui::drawScene() {
// Render console
void Gui::drawConsole() {
- if (!_consoleDirty && !_consoleFullRedraw && !_bordersDirty)
+ if (!_consoleDirty && !_consoleFullRedraw && !_bordersDirty && !_sceneDirty)
return;
renderConsole(&_screen, _consoleTextArea);