fix menu timer in TwoPartSelection

This commit is contained in:
Chris Danford
2007-03-07 04:18:03 +00:00
parent 764402bca7
commit 5de38f596e
+6 -1
View File
@@ -432,7 +432,7 @@ void ScreenSelectMusic::Input( const InputEventPlus &input )
return;
}
if( SELECT_MENU_AVAILABLE && INPUTMAPPER->IsBeingPressed( MENU_BUTTON_SELECT, pn ) )
if( SELECT_MENU_AVAILABLE && INPUTMAPPER->IsBeingPressed( MENU_BUTTON_SELECT, pn ) )
{
if( input.type == IET_FIRST_PRESS )
{
@@ -868,6 +868,11 @@ void ScreenSelectMusic::MenuStart( const InputEventPlus &input )
StartTransitioningScreen( SM_BeginFadingOut );
}
}
else // !finalized. Set the timer for selecting difficulty and mods.
{
m_MenuTimer->SetSeconds( 25 );
m_MenuTimer->Start();
}
}