]> git.mxchange.org Git - simgear.git/commitdiff
Fix a dumb bug.
authorcurt <curt>
Sun, 21 Nov 2004 21:46:02 +0000 (21:46 +0000)
committercurt <curt>
Sun, 21 Nov 2004 21:46:02 +0000 (21:46 +0000)
simgear/sound/soundmgr_openal.cxx

index b525b31fb4f9a531c08027c54b22650796f805cc..e9e2dfbcdac0e757d701591303e8259ca5f8de45 100644 (file)
@@ -47,7 +47,7 @@ inline int (isnan)(double r) { return isnan(r); }
 #endif
 
 #if defined (__FreeBSD__)
-inline int isnan(double r) { return !(r < 0 || r > 0); }
+inline int isnan(double r) { return !(r <= 0 || r >= 0); }
 #endif
 
 #include STL_IOSTREAM