mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 22:34:54 +00:00
Revert "Uninitialized usage.. or so it thought."
This reverts commit 7839676c87
.
Parlane, I hate you.
This commit is contained in:
parent
02acafce52
commit
2c58385fe2
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ void Init(int cpu_core)
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
_control87(_PC_53, MCW_PC);
|
_control87(_PC_53, MCW_PC);
|
||||||
#else
|
#else
|
||||||
unsigned short _mode = 0;
|
unsigned short _mode;
|
||||||
asm ("fstcw %0" : : "m" (_mode));
|
asm ("fstcw %0" : : "m" (_mode));
|
||||||
_mode = (_mode & ~FPU_PREC_MASK) | FPU_PREC_53;
|
_mode = (_mode & ~FPU_PREC_MASK) | FPU_PREC_53;
|
||||||
asm ("fldcw %0" : : "m" (_mode));
|
asm ("fldcw %0" : : "m" (_mode));
|
||||||
|
|
Loading…
Add table
Reference in a new issue