From 016df5864fcab17e6054f5658fbb28f4cf04bc0a Mon Sep 17 00:00:00 2001 From: Aloshi Date: Tue, 8 Jan 2013 11:34:17 -0600 Subject: [PATCH] Fixed game list rendering one entry short. --- src/components/GuiList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/GuiList.cpp b/src/components/GuiList.cpp index b291c9cf2..0476d6759 100644 --- a/src/components/GuiList.cpp +++ b/src/components/GuiList.cpp @@ -41,7 +41,7 @@ void GuiList::onRender() //number of entries that can fit on the screen simultaniously int screenCount = (Renderer::getScreenHeight() - cutoff) / entrySize; - screenCount -= 1; + //screenCount -= 1; if((int)mRowVector.size() >= screenCount) {