https://bugs.winehq.org/show_bug.cgi?id=52393
--- Comment #38 from labre@posteo.de ---
You can try checking following things:
- maybe adding _control87(0, 0) call is enough to make the bug gone
Nope, it wasn’t.
- instead of changing whole control word you can try setting only the
precision (_control87(_PC_64, _MCW_PC)), it's the only setting changed by the game
Nope, that did not help.
- change "return sign * 0.0" to "return sign==-1 ? -0.0 : 0.0"
Did not help.