From 1ceac5382586535098d92d5e4610a77ad5fd90c7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 13 Sep 2006 09:07:04 +0000 Subject: [PATCH] phase out StyleInput; it's just a column number now --- stepmania/src/GameManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/GameManager.cpp b/stepmania/src/GameManager.cpp index 3975965421..83af76e366 100644 --- a/stepmania/src/GameManager.cpp +++ b/stepmania/src/GameManager.cpp @@ -2863,8 +2863,8 @@ MenuButton GameManager::GetMenuButtonSecondaryFunction( const Game *pGame, GameB const Style *pStyle = aStyles[i]; FOREACH_GameController(gc) { - const StyleInput si = pStyle->GameInputToStyleInput( GameInput(gc,gb) ); - if( si != StyleInput_INVALID ) + int iCol = pStyle->GameInputToStyleInput( GameInput(gc,gb) ); + if( iCol != StyleInput_INVALID ) bUsedInGameplay = true; } }