don't turn on menu buttons in LM_Stage

This commit is contained in:
Chris Danford
2005-06-02 20:38:30 +00:00
parent 9d30bde4c6
commit 188f764c3c
+14 -1
View File
@@ -211,7 +211,20 @@ void LightsManager::Update( float fDeltaTime )
case LIGHTSMODE_ALL_CLEARED:
{
FOREACH_CabinetLight( cl )
m_LightsState.m_bCabinetLights[cl] = true;
{
bool b = true;
switch( cl )
{
case LIGHT_BUTTONS_LEFT:
case LIGHT_BUTTONS_RIGHT:
b = false;
break;
default:
b = true;
break;
}
m_LightsState.m_bCabinetLights[cl] = b;
}
}
break;
case LIGHTSMODE_TEST_AUTO_CYCLE: