Debugger: Fix DF E937 not checking for 0.0 correctly

This commit is contained in:
michaelangel007 2022-01-06 10:26:30 -08:00
parent 65e4859b01
commit aa4af5e9d5
1 changed files with 1 additions and 1 deletions

View File

@ -501,7 +501,7 @@ void FAC_Unpack(WORD nAddress, FAC_t& fac_)
| ((m3 ) << 8)
| ((m4 ) << 0);
fac_.isZero = (fac_.exponent == 0);
fac_.isZero = (e0 == 0); // TODO: need to check mantissa?
}