diff options
| author | Eugene Sandulenko | 2016-04-12 19:45:54 +0200 |
|---|---|---|
| committer | Eugene Sandulenko | 2016-04-12 19:45:54 +0200 |
| commit | e2876f2910ec64bfb8dc83d9d81a4b05c39c9675 (patch) | |
| tree | c0c110e1d9db83e70d9edf6177e75d21bc10118d | |
| parent | 01fb992097e525cfd2932e942d7b52dbb3bc3a5d (diff) | |
| download | scummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.tar.gz scummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.tar.bz2 scummvm-rg350-e2876f2910ec64bfb8dc83d9d81a4b05c39c9675.zip | |
WAGE: Fix console redrawing when desktop is redrawn
| -rw-r--r-- | engines/wage/gui.cpp | 2 |
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); |
