From 330d9ef714a5766370d9a8cbfcc46f61b80f30ad Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sat, 19 Aug 2006 19:55:05 +0000 Subject: [PATCH] Fix crash. --- stepmania/src/NoteData.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index 3737eace3f..6f5f98d3be 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -389,14 +389,14 @@ bool NoteData::IsHoldNoteAtRow( int iTrack, int iRow, int *pHeadRow ) const case TapNote::tap: case TapNote::mine: case TapNote::attack: + case TapNote::lift; return false; case TapNote::empty: case TapNote::autoKeysound: /* ignore */ continue; - default: - FAIL_M( ssprintf("%i", tn.type) ); + DEFAULT_FAIL( tn.type ); } if( bFoundHead )