From a7a2bb2dcca229e3c57945f68b352e4ae0ee301c Mon Sep 17 00:00:00 2001 From: Josh Allen Date: Thu, 20 Jul 2006 18:10:29 +0000 Subject: [PATCH] I don't think we are supposed to be incrementing the possible dance points twice. --- stepmania/src/ScoreKeeperNormal.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/ScoreKeeperNormal.cpp b/stepmania/src/ScoreKeeperNormal.cpp index e37fa9c073..d4add70300 100644 --- a/stepmania/src/ScoreKeeperNormal.cpp +++ b/stepmania/src/ScoreKeeperNormal.cpp @@ -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 ); //