From 5302cd85357ffa471b063d750d461044ff65c273 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 7 Feb 2005 03:21:18 +0000 Subject: [PATCH] fix key search going in the wrong direction --- stepmania/src/Player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Player.cpp b/stepmania/src/Player.cpp index b7469c4356..826dce3453 100644 --- a/stepmania/src/Player.cpp +++ b/stepmania/src/Player.cpp @@ -972,8 +972,8 @@ void Player::Step( int col, const RageTimer &tm ) /* Search for keyed sounds separately. If we can't find a nearby note, search * backwards indefinitely, and ignore grading. */ iIndexOverlappingNote = GetClosestNote( col, BeatToNoteRow(fSongBeat), - MAX_NOTE_ROW, iStepSearchRows, + MAX_NOTE_ROW, true ); if( iIndexOverlappingNote != -1 ) {