mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
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
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue