From 07802afdd450e041fb3f42bf2fa6e95524528670 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 17 Sep 2003 23:00:22 +0000 Subject: [PATCH] Hopefully fix that assert failure ... --- stepmania/src/NoteField.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/NoteField.cpp b/stepmania/src/NoteField.cpp index 9cfffe334c..56f7ff4dd0 100644 --- a/stepmania/src/NoteField.cpp +++ b/stepmania/src/NoteField.cpp @@ -323,8 +323,8 @@ float FindLastDisplayedBeat( PlayerNumber pn, int iLastPixelToDraw ) /* With a song that starts with a negative offset, fSearchDistance here can put * the result out of range. XXX: 0 does, too; try setting an #OFFSET to -100. */ - if( GAMESTATE->m_fSongBeat < 0 ) - fLastBeatToDraw = 0; //fSearchDistance; +// if( GAMESTATE->m_fSongBeat < 0 ) +// fLastBeatToDraw = 0; //fSearchDistance; const int NUM_ITERATIONS = 15;