diff --git a/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp b/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp index b2df0f9b71..98a5b8a2c0 100644 --- a/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp +++ b/Source/Core/Core/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp @@ -281,7 +281,7 @@ void Interpreter::frspx(UGeckoInstruction inst) // round to single if (std::isnan(b)) { - const bool is_snan = MathUtil::IsSNAN(b); + const bool is_snan = Common::IsSNAN(b); if (is_snan) SetFPException(FPSCR_VXSNAN);