From 994e7d9fa1e5b6d4ab69c689ff4d72fc19c3eeed Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 5 Mar 2011 00:33:18 -0500 Subject: [PATCH] Combos branch: make checkpoints consistent. A combination of #COMBOS and #TICKCOUNTS will be needed to replicate some of the mission charts. --- src/ScoreKeeperNormal.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScoreKeeperNormal.cpp b/src/ScoreKeeperNormal.cpp index 9b616d7811..109587ac00 100644 --- a/src/ScoreKeeperNormal.cpp +++ b/src/ScoreKeeperNormal.cpp @@ -578,7 +578,7 @@ void ScoreKeeperNormal::HandleHoldCheckpointScore( const NoteData &nd, int iRow, } HandleTapNoteScoreInternal( iNumHoldsMissedThisRow == 0? TNS_CheckpointHit:TNS_CheckpointMiss, TNS_CheckpointHit ); - HandleComboInternal( iNumHoldsHeldThisRow, 0, iNumHoldsMissedThisRow ); + HandleComboInternal( iNumHoldsHeldThisRow, 0, iNumHoldsMissedThisRow, iRow ); } void ScoreKeeperNormal::HandleTapNoteScoreInternal( TapNoteScore tns, TapNoteScore maximum )