From dc1b0e6a319bcd4cbb227b312dcb0e4cec21228c Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 15 Sep 2003 06:32:26 +0000 Subject: [PATCH] Make additions count to the score. --- stepmania/src/ScoreKeeperMAX2.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index b5354fc910..1d51ee8518 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -277,9 +277,10 @@ void ScoreKeeperMAX2::AddScore( TapNoteScore score ) void ScoreKeeperMAX2::HandleTapRowScore( TapNoteScore scoreOfLastTap, int iNumTapsInRow, int iNumAdditions ) { ASSERT( iNumTapsInRow >= 1 ); - int iNumTapsToScore = iNumTapsInRow-iNumAdditions; + int iNumTapsToScore = iNumTapsInRow; //-iNumAdditions; // Update dance points. Additions don't count. + // (yes they do) if( iNumTapsToScore > 0 ) { GAMESTATE->m_CurStageStats.iActualDancePoints[m_PlayerNumber] += TapNoteScoreToDancePoints( scoreOfLastTap );