Merge pull request #6881 from lioncash/build

Interpreter_FloatingPoint: Fix build in frspx()
This commit is contained in:
Markus Wick 2018-05-17 11:05:18 +02:00 committed by GitHub
commit 87a29eb602
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,7 +281,7 @@ void Interpreter::frspx(UGeckoInstruction inst) // round to single
if (std::isnan(b)) if (std::isnan(b))
{ {
const bool is_snan = MathUtil::IsSNAN(b); const bool is_snan = Common::IsSNAN(b);
if (is_snan) if (is_snan)
SetFPException(FPSCR_VXSNAN); SetFPException(FPSCR_VXSNAN);