From 04ed5bf1ed1c595431f5ba8ebc6f369c7691fdc5 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 6 Jun 2004 05:28:58 +0000 Subject: [PATCH] fix spurious assist ticks at start of Play --- stepmania/src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index d9b1691ab2..4372c86d99 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -405,7 +405,7 @@ void ScreenEdit::PlayTicks() const int iSongRow = max( 0, BeatToNoteRowNotRounded( fSongBeat ) ); static int iRowLastCrossed = -1; if( iSongRow < iRowLastCrossed ) - iRowLastCrossed = -1; + iRowLastCrossed = iSongRow; int iTickRow = -1; for( int r=iRowLastCrossed+1; r<=iSongRow; r++ ) // for each index we crossed since the last update