diff --git a/stepmania/src/ScreenNameEntry.cpp b/stepmania/src/ScreenNameEntry.cpp index 890e24102b..7967a80b6d 100644 --- a/stepmania/src/ScreenNameEntry.cpp +++ b/stepmania/src/ScreenNameEntry.cpp @@ -76,7 +76,7 @@ float GetClosestCharYOffset( float fFakeBeat ) float f = fmodf(fFakeBeat, 1.0f); if( f > 0.5f ) f -= 1; - ASSERT( f>=-0.5f && f<=0.5f ); + ASSERT( f>-0.5f && f<=0.5f ); return -f; }