From 15410c38559757f9991b2932f8e4055b7ed11b71 Mon Sep 17 00:00:00 2001 From: Sonicadvance1 Date: Wed, 15 Jul 2009 17:04:59 +0000 Subject: [PATCH] Forgot a line someone told me to test git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3802 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/Common/Src/MathUtil.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/Common/Src/MathUtil.h b/Source/Core/Common/Src/MathUtil.h index 6e5c698a51..c3957e7ab9 100644 --- a/Source/Core/Common/Src/MathUtil.h +++ b/Source/Core/Common/Src/MathUtil.h @@ -47,7 +47,6 @@ union IntFloat { inline bool IsNAN(double d) { - return d !=d; IntDouble x; x.d = d; return ( ((x.i & DOUBLE_EXP) == DOUBLE_EXP) && ((x.i & DOUBLE_FRAC) != DOUBLE_ZERO) );