Revert "Uninitialized usage.. or so it thought."

This reverts commit 7839676c87.

Parlane, I hate you.
This commit is contained in:
Pierre Bourdon 2012-12-24 21:23:28 +01:00
parent 02acafce52
commit 2c58385fe2
1 changed files with 1 additions and 1 deletions

View File

@ -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));