SMMAX2 cleanup

This commit is contained in:
Chris Danford
2003-04-05 04:44:35 +00:00
parent f37c429cad
commit 18f5df31a3
+1 -1
View File
@@ -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;
}