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
This commit is contained in:
parent
5b4d12c1f3
commit
af921d56d0
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue