summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2009-10-29 05:59:34 +0000
committerShawn Hoffman <godisgovernment@gmail.com>2009-10-29 05:59:34 +0000
commitaf921d56d014ef01f6bcd4e36ec976471bd08191 (patch)
treeba5c0fd5e545240952025a617de51407760f543e /Source/Core
parent5b4d12c1f3dd2c6fd8f9eba3b0c9e0832a54835d (diff)
fix silly typo in last commit that broke jit...
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4478 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStore.cpp b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStore.cpp
index b94b84b815..005d4ad376 100644
--- a/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStore.cpp
+++ b/Source/Core/Core/Src/PowerPC/Jit64/Jit_LoadStore.cpp
@@ -38,7 +38,7 @@ void Jit64::lbzx(UGeckoInstruction inst)
INSTRUCTION_START
JITDISABLE(LoadStore)
if (Core::g_CoreStartupParameter.bJITLoadStorelbzxOff)
- Default(inst); return;
+ { Default(inst); return; }
int a = inst.RA, b = inst.RB, d = inst.RD;
gpr.Lock(a, b, d);
@@ -114,7 +114,7 @@ void Jit64::lXz(UGeckoInstruction inst)
INSTRUCTION_START
JITDISABLE(LoadStore)
if (Core::g_CoreStartupParameter.bJITLoadStorelXzOff)
- Default(inst); return;
+ { Default(inst); return; }
int d = inst.RD;
int a = inst.RA;