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:
Sonicadvance1 2009-07-15 17:04:59 +00:00
parent 6802f885b1
commit 15410c3855
1 changed files with 0 additions and 1 deletions

View File

@ -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) );