mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-28 09:23:34 +00:00
Fix invalid double constant.
This commit is contained in:
parent
46fa645555
commit
5fd88bf801
@ -3956,7 +3956,7 @@ private:
|
||||
{
|
||||
const double b = CPU.FPR[frb];
|
||||
u64 r;
|
||||
if(b > (double)0x7fffffffffffffff)
|
||||
if(b >= (double)0x8000000000000000)
|
||||
{
|
||||
r = 0x7fffffffffffffff;
|
||||
CPU.SetFPSCRException(FPSCR_VXCVI);
|
||||
|
Loading…
Reference in New Issue
Block a user