Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ARM] Fix ori again.
  • Loading branch information
Sonicadvance1 committed Aug 11, 2013
1 parent a279001 commit ef83d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/Src/PowerPC/JitArm32/JitArm_Integer.cpp
Expand Up @@ -149,7 +149,7 @@ void JitArm::ori(UGeckoInstruction inst)

if (gpr.IsImm(s))
{
gpr.SetImmediate(s, gpr.GetImm(a) | inst.UIMM);
gpr.SetImmediate(a, gpr.GetImm(s) | inst.UIMM);
return;
}
ARMReg RA = gpr.R(a);
Expand Down

0 comments on commit ef83d03

Please sign in to comment.