From 93419681a3a3439d567af06febb3eb75ce060499 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 8 May 2007 01:59:57 +0000 Subject: [PATCH] blink START button instead of LIGHT_BUTTONS_LEFT/RIGHT (which have a less well-defined correspondence with players) --- stepmania/src/LightsManager.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/stepmania/src/LightsManager.cpp b/stepmania/src/LightsManager.cpp index 8234fffa6f..058786944b 100644 --- a/stepmania/src/LightsManager.cpp +++ b/stepmania/src/LightsManager.cpp @@ -328,9 +328,7 @@ void LightsManager::Update( float fDeltaTime ) FOREACH_PlayerNumber( pn ) { if( !GAMESTATE->m_bSideIsJoined[pn] && GAMESTATE->PlayersCanJoin() && GAMESTATE->EnoughCreditsToJoin() ) - { - m_LightsState.m_bCabinetLights[LIGHT_BUTTONS_LEFT+pn] = bBlinkOn; - } + m_LightsState.m_bGameButtonLights[pn][GAME_BUTTON_MENULEFT] = bBlinkOn; } }