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.
This commit is contained in:
@@ -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 )
|
||||
|
||||
Reference in New Issue
Block a user