diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index eee8c6021e..51a7ab3e13 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -383,7 +383,7 @@ void ScreenSelectMusic::Update( float fDeltaTime ) if( m_fPlaySampleCountdown > 0 ) { m_fPlaySampleCountdown -= fDeltaTime; - if( m_fPlaySampleCountdown < 0 ) + if( m_fPlaySampleCountdown <= 0 ) this->PlayMusicSample(); }