diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 8c1070ca86..642bc6524c 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -231,7 +231,7 @@ void Song::GetBeatAndBPSFromElapsedTime( float fElapsedTime, float &fBeatOut, fl // so do a binary search to get close to the correct elapsed time. float Song::GetElapsedTimeFromBeat( float fBeat ) const { - float fElapsedTimeBestGuess = 100; // seconds + float fElapsedTimeBestGuess = this->m_fMusicLengthSeconds/2; // seconds float fSecondsToMove = fElapsedTimeBestGuess; // seconds float fBeatOut, fBPSOut; bool bFreezeOut;