mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-15 08:49:20 +01:00
Interpreter_FloatingPoint: Fix build in frspx()
Github didn't detect conflicts here, however, since the float handling functions were moved into the Common namespace, this would cause a build failure.
This commit is contained in:
parent
c485efdfe1
commit
abefbf032e
@ -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