|
From: Yoda-JM <yo...@us...> - 2010-11-13 00:47:14
|
Module: performous
Branch: master
Commit: 40f61cf01229e7b229ee506017be0ce07089ae0f
Author: Vincent Le Ligeour <yo...@us...>
Date: Sat Nov 13 01:46:54 2010 +0100
Fixed drum helper in joinmenu
---
game/instrumentgraph.cc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/instrumentgraph.cc b/game/instrumentgraph.cc
index d8a5580..95de035 100644
--- a/game/instrumentgraph.cc
+++ b/game/instrumentgraph.cc
@@ -151,7 +151,7 @@ void InstrumentGraph::drawMenu() {
hintfont.dimensions.left(leftx).center(y - step);
hintfont.draw("I");
}
- if (m_menu.getOptions().size()-1) { // Down
+ if (i < m_menu.getOptions().size()-1) { // Down
SvgTxtTheme& hintfont = th.getCachedOption("O");
hintfont.dimensions.left(leftx).center(y + step);
hintfont.draw("O");
|