I don't think we are supposed to be incrementing the possible dance points twice.

This commit is contained in:
Josh Allen
2006-07-20 18:10:29 +00:00
parent df915a60ca
commit a7a2bb2dcc
+1 -2
View File
@@ -360,12 +360,11 @@ void ScoreKeeperNormal::HandleTapRowScore( const NoteData &nd, int iRow )
// Update dance points.
if( !m_pPlayerStageStats->bFailed )
m_pPlayerStageStats->iActualDancePoints += TapNoteScoreToDancePoints( scoreOfLastTap );
m_pPlayerStageStats->iCurPossibleDancePoints += TapNoteScoreToDancePoints( TNS_W1 );
// update judged row totals
m_pPlayerStageStats->iTapNoteScores[scoreOfLastTap] += 1;
// increment the current total possible dance score
m_pPlayerStageStats->iCurPossibleDancePoints += TapNoteScoreToDancePoints( TNS_W1 );
//