diff options
author | Eugene Sandulenko | 2017-08-03 09:39:56 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2017-08-04 21:54:20 +0200 |
commit | db38a363697afd2107e4c0ee874ddec60c53e867 (patch) | |
tree | a844a14cd7a1a360af92f1896b88d1b5aa692134 | |
parent | 08293015e7c18202a4783d39d4083077f562cbca (diff) | |
download | scummvm-rg350-db38a363697afd2107e4c0ee874ddec60c53e867.tar.gz scummvm-rg350-db38a363697afd2107e4c0ee874ddec60c53e867.tar.bz2 scummvm-rg350-db38a363697afd2107e4c0ee874ddec60c53e867.zip |
WAGE: Remove redundant call
-rw-r--r-- | engines/wage/gui-console.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/engines/wage/gui-console.cpp b/engines/wage/gui-console.cpp index dd761f0487..53ccb55233 100644 --- a/engines/wage/gui-console.cpp +++ b/engines/wage/gui-console.cpp @@ -192,11 +192,6 @@ void Gui::renderConsole(Graphics::ManagedSurface *g, const Common::Rect &r) { fullRedraw = true; } -#ifdef USE_MACTEXTWINDOW - // TODO: Call this at an appropriate place (only when the selection can change) - _consoleWindow->setSelection(_selectionStartX, _selectionStartY, _selectionEndX, _selectionEndY); -#endif // USE_MACTEXTWINDOW - if (fullRedraw) { _console.clear(kColorWhite); } |