simplify: count each stage as one stage, no special case for long songs

This commit is contained in:
Glenn Maynard
2007-04-24 21:37:20 +00:00
parent bae642b3d7
commit 73c6158bbe
+1 -4
View File
@@ -669,10 +669,7 @@ void GameState::FinishStage()
ASSERT( m_iNumStagesOfThisSong >= 1 && m_iNumStagesOfThisSong <= 3 );
const int iOldStageIndex = m_iCurrentStageIndex;
if( IsCourseMode() )
m_iCurrentStageIndex += 1;
else
m_iCurrentStageIndex += m_iNumStagesOfThisSong;
++m_iCurrentStageIndex;
FOREACH_EnabledPlayer( p )
m_iPlayerCurrentStageIndexForCurrentCredit[p] += m_iNumStagesOfThisSong;