fix max score for 5th mix long and marathon versions

This commit is contained in:
Andrew Wong
2004-02-08 10:48:16 +00:00
parent 4106625ad3
commit 75ef4652db
+1 -1
View File
@@ -163,7 +163,7 @@ void ScoreKeeperMAX2::OnNextSong( int iSongInCourseIndex, const Steps* pNotes, c
m_iMaxPossiblePoints = iMeter * 10000000 * iLengthMultiplier;
break;
case PrefsManager::SCORING_5TH:
m_iMaxPossiblePoints = (iMeter + 1) * 5000000 * iLengthMultiplier;
m_iMaxPossiblePoints = (iMeter * iLengthMultiplier + 1) * 5000000;
break;
default:
ASSERT(0);