Debugger FPU output fix

This commit is contained in:
Toni Wilen 2023-09-17 11:09:55 +03:00
parent 18b8df5898
commit ad02d807f7

View File

@ -580,8 +580,6 @@ static const TCHAR *fp_print(fpdata *fpd, int mode)
} else if(isnan(fpd->fp)) {
_stprintf(fsout, _T("%c%s"), n ? '-' : '+', _T("nan"));
} else {
if(n)
fpd->fp *= -1.0;
#ifdef USE_LONG_DOUBLE
_stprintf(fsout, _T("#%Le"), fpd->fp);
#else