diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index 1d51ee8518..657175501a 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -232,7 +232,7 @@ void ScoreKeeperMAX2::AddScore( TapNoteScore score ) // What does this do? "Don't use a multiplier if // the player has failed"? - if( GAMESTATE->m_CurStageStats.bFailed[m_PlayerNumber] ) + if( GAMESTATE->m_CurStageStats.bFailedEarlier[m_PlayerNumber] ) { iScore += p; // make score evenly divisible by 5 @@ -252,7 +252,7 @@ void ScoreKeeperMAX2::AddScore( TapNoteScore score ) if ( m_iTapNotesHit == m_iNumTapsAndHolds && score >= TNS_PERFECT ) { - if (!GAMESTATE->m_CurStageStats.bFailed[m_PlayerNumber]) + if (!GAMESTATE->m_CurStageStats.bFailedEarlier[m_PlayerNumber]) iScore += m_iPointBonus; if ( m_bIsLastSongInCourse ) {