Fix 32-bit compilation, _finitef is not available on x86

This commit is contained in:
baldurk
2017-08-14 19:09:38 +01:00
parent 8af5d486b2
commit f5b6b61b4b
+1 -1
View File
@@ -39,7 +39,7 @@ namespace ShaderDebug
{
static float round_ne(float x)
{
if(!_finitef(x) || _isnanf(x))
if(!_finite(x) || _isnan(x))
return x;
float rem = remainderf(x, 1.0f);