Skip to content

Commit

Permalink
Revert "Uninitialized usage.. or so it thought."
Browse files Browse the repository at this point in the history
This reverts commit 7839676.

Parlane, I hate you.
  • Loading branch information
delroth committed Dec 24, 2012
1 parent 02acafc commit 2c58385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/PowerPC/PowerPC.cpp
Expand Up @@ -144,7 +144,7 @@ void Init(int cpu_core)
#ifdef _WIN32
_control87(_PC_53, MCW_PC);
#else
unsigned short _mode = 0;
unsigned short _mode;
asm ("fstcw %0" : : "m" (_mode));
_mode = (_mode & ~FPU_PREC_MASK) | FPU_PREC_53;
asm ("fldcw %0" : : "m" (_mode));
Expand Down

0 comments on commit 2c58385

Please sign in to comment.