From f954aa201951586c9ebc14c76153b24ce0570f9b Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 23 Jan 2005 03:48:22 +0000 Subject: [PATCH] NoteData::IsHoldNoteAtBeat fix --- stepmania/src/NoteData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index 053200aaf5..9bc10b88f2 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -273,7 +273,7 @@ bool NoteData::IsHoldNoteAtBeat( int iTrack, int iRow ) const /* Starting at iRow, search upwards. If we find a TapNote::hold_head, we're within * a hold. If we find a tap, mine or attack, we're not--those never lie within hold * notes. Ignore autoKeysound. */ - FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE_REVERSE( *this, iTrack, r, iRow, 0 ) + FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE_REVERSE( *this, iTrack, r, 0, iRow ) { const TapNote &tn = GetTapNote( iTrack, r ); switch( tn.type )