Skip to content

Commit

Permalink
WAGE: Fix cursor position at the scroll end
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 3, 2016
1 parent 1b0d6a4 commit 2c8922e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wage/gui.cpp
Expand Up @@ -433,7 +433,7 @@ void Gui::flowText(String &str) {
_cursorX = kConHPadding;

if (_scrollPos)
_cursorY = (_consoleNumLines) * _consoleLineHeight;
_cursorY = (_consoleNumLines + 1) * _consoleLineHeight;
else
_cursorY = (_lines.size()) * _consoleLineHeight;

Expand Down

0 comments on commit 2c8922e

Please sign in to comment.