From 8707bfa7982be4ff2c36108679393a7a71e38177 Mon Sep 17 00:00:00 2001 From: John Bauer Date: Mon, 27 Nov 2006 01:09:32 +0000 Subject: [PATCH] Fix a bug where miss combos were incremented by 1, not 2 or more, even for jumps or hands. Perhaps this wasn't a bug, but in that case the reason for the distinction should have been documented. --- stepmania/src/ScoreKeeperNormal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScoreKeeperNormal.cpp b/stepmania/src/ScoreKeeperNormal.cpp index 3be759204b..9785889a25 100644 --- a/stepmania/src/ScoreKeeperNormal.cpp +++ b/stepmania/src/ScoreKeeperNormal.cpp @@ -450,7 +450,7 @@ void ScoreKeeperNormal::HandleTapRowScore( const NoteData &nd, int iRow ) { m_pPlayerStageStats->m_iCurCombo = 0; if( scoreOfLastTap == TNS_Miss ) - ++m_pPlayerStageStats->m_iCurMissCombo; + m_pPlayerStageStats->m_iCurMissCombo += iComboCountIfHit; } if( m_pPlayerState->m_PlayerNumber != PLAYER_INVALID )