mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-25 14:05:00 +00:00
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
1 changed files with 0 additions and 1 deletions
|
@ -47,7 +47,6 @@ union IntFloat {
|
||||||
|
|
||||||
inline bool IsNAN(double d)
|
inline bool IsNAN(double d)
|
||||||
{
|
{
|
||||||
return d !=d;
|
|
||||||
IntDouble x; x.d = d;
|
IntDouble x; x.d = d;
|
||||||
return ( ((x.i & DOUBLE_EXP) == DOUBLE_EXP) &&
|
return ( ((x.i & DOUBLE_EXP) == DOUBLE_EXP) &&
|
||||||
((x.i & DOUBLE_FRAC) != DOUBLE_ZERO) );
|
((x.i & DOUBLE_FRAC) != DOUBLE_ZERO) );
|
||||||
|
|
Loading…
Add table
Reference in a new issue