mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01:00
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))
|
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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user