Fix lifts not counting for combos.

This commit is contained in:
Steve Checkoway
2008-01-19 22:24:29 +00:00
parent cfb5341e09
commit 04747b42ad
+1 -1
View File
@@ -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 )