Skip to content
Permalink
Browse files
Merge pull request #6881 from lioncash/build
Interpreter_FloatingPoint: Fix build in frspx()
  • Loading branch information
degasus committed May 17, 2018
2 parents bc8d87b + abefbf0 commit 87a29eb
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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);

0 comments on commit 87a29eb

Please sign in to comment.