mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Re-enable non-IEEE mode support
This commit is contained in:
parent
f6897039c7
commit
1f34ed2c25
1 changed files with 1 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue