Skip to content

Commit

Permalink
Uninitialized usage.. or so it thought.
Browse files Browse the repository at this point in the history
  • Loading branch information
Parlane committed Dec 23, 2012
1 parent 4dbd2ed commit 7839676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/PowerPC/PowerPC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void Init(int cpu_core)
#ifdef _WIN32
_control87(_PC_53, MCW_PC);
#else
unsigned short _mode;
unsigned short _mode = 0;
asm ("fstcw %0" : : "m" (_mode));
_mode = (_mode & ~FPU_PREC_MASK) | FPU_PREC_53;
asm ("fldcw %0" : : "m" (_mode));
Expand Down

0 comments on commit 7839676

Please sign in to comment.