Merge pull request #6881 from lioncash/build
Interpreter_FloatingPoint: Fix build in frspx()
This commit is contained in:
commit
87a29eb602
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue