From 392fabc45ff9b29635455576d921565815c3d603 Mon Sep 17 00:00:00 2001 From: Kyzentun Date: Wed, 12 Feb 2014 14:59:48 -0700 Subject: [PATCH] Hold notes were added to possible score twice. --- src/ScoreKeeperNormal.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/ScoreKeeperNormal.cpp b/src/ScoreKeeperNormal.cpp index e36e602837..787a89796b 100644 --- a/src/ScoreKeeperNormal.cpp +++ b/src/ScoreKeeperNormal.cpp @@ -586,13 +586,10 @@ void ScoreKeeperNormal::HandleHoldScore( const TapNote &tn ) // update dance points totals if( !m_pPlayerStageStats->m_bFailed ) m_pPlayerStageStats->m_iActualDancePoints += HoldNoteScoreToDancePoints( holdScore ); + // increment the current total possible dance score m_pPlayerStageStats->m_iCurPossibleDancePoints += HoldNoteScoreToDancePoints( HNS_Held ); m_pPlayerStageStats->m_iHoldNoteScores[holdScore] ++; - // increment the current total possible dance score - - m_pPlayerStageStats->m_iCurPossibleDancePoints += HoldNoteScoreToDancePoints( HNS_Held ); - AddHoldScore( holdScore ); // TODO: Remove indexing with PlayerNumber