Cosmetic fix: Removed display of "Lets Move On" graphic (KeepAliveTransition) when transitioning from the evaluation screen of the last song played to the summary evaluation screen.

This commit is contained in:
Laurence Hartje
2002-12-19 20:01:53 +00:00
parent 22ac4ef9df
commit 0a9c306cf8
3 changed files with 14 additions and 1 deletions
+4
View File
@@ -864,7 +864,11 @@ void ScreenEvaluation::MenuStart( PlayerNumber pn )
if( m_bTryExtraStage )
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
else if( m_ResultMode == RM_ARCADE_STAGE && GAMESTATE->m_iCurrentStageIndex == PREFSMAN->m_iNumArcadeStages-1 )
{
//Disable "Lets Move On Graphic"
m_Menu.m_KeepAlive.SetHidden();
m_Menu.TweenOffScreenToMenu( SM_GoToFinalEvaluation );
}
else if( m_ResultMode == RM_ARCADE_STAGE && GAMESTATE->m_iCurrentStageIndex < PREFSMAN->m_iNumArcadeStages-1 )
m_Menu.TweenOffScreenToMenu( SM_GoToSelectMusic );
else