fix OK and NG percent scores backwards

This commit is contained in:
Glenn Maynard
2004-02-16 06:09:33 +00:00
parent eeec88d58c
commit 47bc0b6bb6
+2 -2
View File
@@ -462,11 +462,11 @@ int ScoreKeeperMAX2::TapNoteScoreToDancePoints( TapNoteScore tns )
int ScoreKeeperMAX2::HoldNoteScoreToDancePoints( HoldNoteScore hns ) int ScoreKeeperMAX2::HoldNoteScoreToDancePoints( HoldNoteScore hns )
{ {
int HoldScoreValues[NUM_TAP_NOTE_SCORES] = int HoldScoreValues[NUM_HOLD_NOTE_SCORES] =
{ {
0, 0,
PREFSMAN->m_iPercentScoreWeightNG,
PREFSMAN->m_iPercentScoreWeightOK, PREFSMAN->m_iPercentScoreWeightOK,
PREFSMAN->m_iPercentScoreWeightNG,
}; };
return HoldScoreValues[hns]; return HoldScoreValues[hns];
} }