Skip to content

Commit

Permalink
WAGE: Leave room for input text in console
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Jan 3, 2016
1 parent b25b2ec commit 6233e42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/wage/gui.cpp
Expand Up @@ -449,7 +449,7 @@ void Gui::renderConsole(Graphics::Surface *g, Common::Rect &r) {
int y1 = yOff - (_scrollPos % _consoleLineHeight) + kConHPadding;

if (fullRedraw)
_consoleNumLines = r.height() / _consoleLineHeight - 1;
_consoleNumLines = r.height() / _consoleLineHeight - 2;

for (int line = firstLine; line < lastLine; line++) {
const char *str = _lines[line].c_str();
Expand Down

0 comments on commit 6233e42

Please sign in to comment.