diff --git a/stepmania/src/StreamDisplay.cpp b/stepmania/src/StreamDisplay.cpp index 800d120597..c053268427 100644 --- a/stepmania/src/StreamDisplay.cpp +++ b/stepmania/src/StreamDisplay.cpp @@ -125,12 +125,12 @@ void StreamDisplay::DrawPrimitives() void StreamDisplay::SetPercent( float fPercent ) { DEBUG_ASSERT( fPercent >= 0.0f && fPercent <= 1.0f ); - if( _isnan(fPercent) ) + if( isnan(fPercent) ) { DEBUG_ASSERT_M( 0, "fPercent is NaN" ); fPercent = 1; } - if( !_finite(fPercent) ) + if( !finite(fPercent) ) { DEBUG_ASSERT_M( 0, "fPercent is infinite" ); fPercent = 1;