fix long-standing bug: don't increment Possible for mines

This commit is contained in:
Glenn Maynard
2005-03-17 06:23:42 +00:00
parent 46443085fd
commit b36124bb5e
+2 -1
View File
@@ -121,7 +121,8 @@ Grade PlayerStageStats::GetGrade() const
default: FAIL_M( ssprintf("%i", tns) ); break;
}
Actual += iTapNoteScores[tns] * iTapScoreValue;
Possible += iTapNoteScores[tns] * PREFSMAN->m_iGradeWeightMarvelous;
if( tns != TNS_HIT_MINE )
Possible += iTapNoteScores[tns] * PREFSMAN->m_iGradeWeightMarvelous;
}
FOREACH_HoldNoteScore( hns )