If a percentage is being displayed when playing oni mode, only count marvelous as 2 dance points. This makes the percentage consistent with Max2 and also playing a single song on battery and playing a single song oni course will be graded the same.

This commit is contained in:
Steve Checkoway
2003-09-26 00:47:51 +00:00
parent 5ab83410aa
commit 81aa716f7d
+1 -1
View File
@@ -477,7 +477,7 @@ int ScoreKeeperMAX2::TapNoteScoreToDancePoints( TapNoteScore tns )
case PLAY_MODE_ONI:
switch( tns )
{
case TNS_MARVELOUS: return +3;
case TNS_MARVELOUS: return (PREFSMAN->m_bDancePointsForOni ? +3 : +2);
case TNS_PERFECT: return +2;
case TNS_GREAT: return +1;
case TNS_GOOD: return +0;