2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

vfpdouble: Fix the FTOUI NaN sign setting

This was fixed for vfpsingle, but not vfpdouble
This commit is contained in:
Lioncash 2015-02-09 17:17:52 -05:00
parent 7dfdbe22de
commit 53fa04f326

View file

@ -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;