Merge pull request #2889 from lioncash/interp

Interpreter: Use std::isnan instead of IsNAN
This commit is contained in:
flacs
2015-08-21 21:43:08 +02:00
3 changed files with 2 additions and 27 deletions

View File

@ -22,7 +22,7 @@ void Interpreter::Helper_FloatCompareOrdered(UGeckoInstruction _inst, double fa,
{
int compareResult;
if (IsNAN(fa) || IsNAN(fb))
if (std::isnan(fa) || std::isnan(fb))
{
FPSCR.FX = 1;
compareResult = FPCC::FU;
@ -62,7 +62,7 @@ void Interpreter::Helper_FloatCompareUnordered(UGeckoInstruction _inst, double f
{
int compareResult;
if (IsNAN(fa) || IsNAN(fb))
if (std::isnan(fa) || std::isnan(fb))
{
compareResult = FPCC::FU;