From a74201a0132e5a82bdab371b4cd588cbc4812a39 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Mon, 28 Jul 2008 06:26:28 +0000 Subject: [PATCH] Treat lifts like taps. This should fix assist ticks not ticking for lifts. --- stepmania/src/NoteData.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index f024d4b3b6..f61281e342 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -250,7 +250,7 @@ int NoteData::GetNumTracksWithTap( int row ) const for( int t=0; t=0; t-- ) { const TapNote &tn = GetTapNote( t, row ); - if( tn.type == TapNote::tap || tn.type == TapNote::hold_head ) + if( tn.type == TapNote::tap || tn.type == TapNote::lift || tn.type == TapNote::hold_head ) return t; } return -1;