diff options
| author | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-24 11:37:31 +0000 |
|---|---|---|
| committer | Maarten ter Huurne <maarten@treewalker.org> | 2008-08-24 11:37:31 +0000 |
| commit | 6f1600304f831de08cda19e0bbea95eafaa03213 (patch) | |
| tree | 85839561ee8ed43d443b9b3b9770b02a039acaee /Source/Core | |
| parent | 18270f0904650b262dc22fc023c5a95a6f269d45 (diff) | |
64-bit constant needs "ULL" suffix.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@290 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_FloatingPoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|
