mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +00:00
64-bit constant needs "ULL" suffix.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@290 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
18270f0904
commit
6f1600304f
1 changed files with 1 additions and 1 deletions
|
@ -318,7 +318,7 @@ void CInterpreter::frspx(UGeckoInstruction _inst) // round to single
|
||||||
//PanicAlert("rounding up");
|
//PanicAlert("rounding up");
|
||||||
FPSCR.FR = 1;
|
FPSCR.FR = 1;
|
||||||
mantissa_single += 0x20000000;
|
mantissa_single += 0x20000000;
|
||||||
if (mantissa_single & 0x0010000000000000) {
|
if (mantissa_single & 0x0010000000000000ULL) {
|
||||||
// PanicAlert("renormalizing");
|
// PanicAlert("renormalizing");
|
||||||
mantissa_single >>= 1;
|
mantissa_single >>= 1;
|
||||||
exp += 1;
|
exp += 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue