diff --git a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp index cca50b8e8a..3c2229acfd 100644 --- a/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp +++ b/Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp @@ -318,7 +318,7 @@ void CInterpreter::frspx(UGeckoInstruction _inst) // round to single //PanicAlert("rounding up"); FPSCR.FR = 1; mantissa_single += 0x20000000; - if (mantissa_single & 0x0010000000000000) { + if (mantissa_single & 0x0010000000000000ULL) { // PanicAlert("renormalizing"); mantissa_single >>= 1; exp += 1;