From 293d72715255d64f8c104a92a137ddf7a2504045 Mon Sep 17 00:00:00 2001 From: Dees_Troy Date: Wed, 26 Sep 2012 10:43:46 -0400 Subject: Fix a problem with scrolling in the console --- gui/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/console.cpp b/gui/console.cpp index b7713c70c..7631e4336 100644 --- a/gui/console.cpp +++ b/gui/console.cpp @@ -366,7 +366,7 @@ int GUIConsole::NotifyTouch(TOUCH_STATE state, int x, int y) { mLastTouchY = y; if (mCurrentLine == -1) - mCurrentLine = mLastCount - mMaxRows; + mCurrentLine = mLastCount - 1; else if (mCurrentLine > mSlideMultiplier) mCurrentLine -= mSlideMultiplier; else -- cgit v1.2.3