diff --git a/stepmania/src/RageSound.cpp b/stepmania/src/RageSound.cpp index 60f3402c98..c32826b28e 100644 --- a/stepmania/src/RageSound.cpp +++ b/stepmania/src/RageSound.cpp @@ -207,7 +207,7 @@ void RageSound::SetStartSeconds( float secs ) void RageSound::SetLengthSeconds(float secs) { - ASSERT(secs == -1 || secs >= 0); + RAGE_ASSERT_M( secs == -1 || secs >= 0, ssprintf("%f",secs) ); ASSERT(!playing); if(secs == -1)