diff options
author | Eugene Sandulenko | 2016-01-04 23:17:27 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-01-04 23:17:27 +0100 |
commit | ba34243d5bbe7918bd43950cd84d775e946beb49 (patch) | |
tree | c28caf186b414bc842e898ece5d0fd1a1346e622 /engines/wage | |
parent | 41bad49b4a521c35266a3fd3829013a8e9ca2387 (diff) | |
download | scummvm-rg350-ba34243d5bbe7918bd43950cd84d775e946beb49.tar.gz scummvm-rg350-ba34243d5bbe7918bd43950cd84d775e946beb49.tar.bz2 scummvm-rg350-ba34243d5bbe7918bd43950cd84d775e946beb49.zip |
WAGE: Make console window active when text is entered. Matches original
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/gui.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/engines/wage/gui.cpp b/engines/wage/gui.cpp index 1b5efbfbdc..d8bb220aa8 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -507,6 +507,11 @@ void Gui::drawInput() { if (!_screen.getPixels()) return; + if (_sceneIsActive) { + _sceneIsActive = false; + _bordersDirty = true; + } + const Graphics::Font *font = getConsoleFont(); int x = kConWPadding + _consoleTextArea.left; |