From 04747b42ad9cff2ee75075ff535b9d352838f762 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 19 Jan 2008 22:24:29 +0000 Subject: [PATCH] Fix lifts not counting for combos. --- 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 7a6e2cb710..bacb8708f9 100644 --- a/stepmania/src/ScoreKeeperNormal.cpp +++ b/stepmania/src/ScoreKeeperNormal.cpp @@ -503,7 +503,7 @@ void ScoreKeeperNormal::GetRowCounts( const NoteData &nd, int iRow, if( tn.pn != PLAYER_INVALID && tn.pn != pn ) continue; - if( tn.type != TapNote::tap && tn.type != TapNote::hold_head ) + if( tn.type != TapNote::tap && tn.type != TapNote::hold_head && tn.type != TapNote::lift ) continue; TapNoteScore tns = tn.result.tns; if( tns >= m_MinScoreToContinueCombo )