diff options
| -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;  | 
