Re-enable non-IEEE mode support
This commit is contained in:
parent
f6897039c7
commit
1f34ed2c25
|
@ -101,8 +101,7 @@ namespace FPURoundMode
|
||||||
FTZ, // flush-to-zero only
|
FTZ, // flush-to-zero only
|
||||||
FTZ | DAZ, // flush-to-zero and denormals-are-zero (may not be supported)
|
FTZ | DAZ, // flush-to-zero and denormals-are-zero (may not be supported)
|
||||||
};
|
};
|
||||||
// FIXME: proper (?) non-IEEE mode emulation causes issues in lots of games
|
if (nonIEEEMode)
|
||||||
if (nonIEEEMode && false)
|
|
||||||
{
|
{
|
||||||
csr |= denormalLUT[cpu_info.bFlushToZero];
|
csr |= denormalLUT[cpu_info.bFlushToZero];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue