[ARM] Fix ori again.

This commit is contained in:
Ryan Houdek 2013-08-11 05:07:09 +00:00
parent a279001472
commit ef83d03dc0
1 changed files with 1 additions and 1 deletions

View File

@ -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);