diff options
author | Eugene Sandulenko | 2016-01-03 22:11:41 +0100 |
---|---|---|
committer | Eugene Sandulenko | 2016-01-03 22:11:41 +0100 |
commit | aec3bc19ece9c09754da1c026b56fa7213918126 (patch) | |
tree | 9e5309ad72497a8d8159f568030bb7e4550943f7 /engines/wage | |
parent | 0b361b94dc303f95a636e8d183aca7f3854f00e4 (diff) | |
download | scummvm-rg350-aec3bc19ece9c09754da1c026b56fa7213918126.tar.gz scummvm-rg350-aec3bc19ece9c09754da1c026b56fa7213918126.tar.bz2 scummvm-rg350-aec3bc19ece9c09754da1c026b56fa7213918126.zip |
WAGE: Fixed cursor position
Diffstat (limited to 'engines/wage')
-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 e3c98de351..141cca9167 100644 --- a/engines/wage/gui.cpp +++ b/engines/wage/gui.cpp @@ -427,7 +427,7 @@ void Gui::flowText(String &str) { int pos = _scrollPos; _scrollPos = MAX<int>(0, (_lines.size() - _consoleNumLines) * _consoleLineHeight); - _cursorX = 0; + _cursorX = kConHPadding; if (_scrollPos) _cursorY = (_consoleNumLines + 1) * _consoleLineHeight; |