From af2326e739eae88987aaa3f785f994e2a4a043db Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 6 May 2005 14:35:17 +0000 Subject: [PATCH] fix linux compile --- stepmania/src/StreamDisplay.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;