mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-04 03:46:42 +01:00
Uninitialized usage.. or so it thought.
This commit is contained in:
parent
4dbd2ed7fb
commit
7839676c87
@ -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;
|
unsigned short _mode = 0;
|
||||||
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…
x
Reference in New Issue
Block a user