mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 12:08:08 -05:00
vfpdouble: Fix the FTOUI NaN sign setting
This was fixed for vfpsingle, but not vfpdouble
This commit is contained in:
@ -552,7 +552,7 @@ static u32 vfp_double_ftoui(ARMul_State* state, int sd, int unused, int dm, u32
|
||||
exceptions |= FPSCR_IDC;
|
||||
|
||||
if (tm & VFP_NAN)
|
||||
vdm.sign = 0;
|
||||
vdm.sign = 1;
|
||||
|
||||
if (vdm.exponent >= 1023 + 32) {
|
||||
d = vdm.sign ? 0 : 0xffffffff;
|
||||
|
Reference in New Issue
Block a user