fix up scoring

This commit is contained in:
Glenn Maynard
2003-03-31 22:06:23 +00:00
parent af449386aa
commit 971b2cba15
+1 -1
View File
@@ -96,7 +96,7 @@ void ScoreKeeperMAX2::OnNextSong( int iSongInCourseIndex, Notes* pNotes )
{
int iMeter = pNotes->GetMeter();
CLAMP( iMeter, 1, 10 );
iMaxPossiblePoints = iMeter * 100000;
iMaxPossiblePoints = iMeter * 1000000;
}
m_fScoreMultiplier = (float)iMaxPossiblePoints / sum;