mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 12:04:56 +00:00
Merge pull request #6881 from lioncash/build
Interpreter_FloatingPoint: Fix build in frspx()
This commit is contained in:
commit
87a29eb602
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue