use standard name "isfinite", not "finite"

This commit is contained in:
Glenn Maynard
2006-06-15 03:15:41 +00:00
parent 38a7ff109e
commit f0b7631e3a
4 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -134,7 +134,7 @@ void StreamDisplay::SetPercent( float fPercent )
DEBUG_ASSERT_M( 0, "fPercent is NaN" );
fPercent = 1;
}
if( !finite(fPercent) )
if( !isfinite(fPercent) )
{
DEBUG_ASSERT_M( 0, "fPercent is infinite" );
fPercent = 1;