Forgot a line someone told me to test
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3802 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6802f885b1
commit
15410c3855
|
@ -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) );
|
||||
|
|
Loading…
Reference in New Issue