mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
[ARM] Fix ori again.
This commit is contained in:
parent
a279001472
commit
ef83d03dc0
@ -149,7 +149,7 @@ void JitArm::ori(UGeckoInstruction inst)
|
|||||||
|
|
||||||
if (gpr.IsImm(s))
|
if (gpr.IsImm(s))
|
||||||
{
|
{
|
||||||
gpr.SetImmediate(s, gpr.GetImm(a) | inst.UIMM);
|
gpr.SetImmediate(a, gpr.GetImm(s) | inst.UIMM);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
ARMReg RA = gpr.R(a);
|
ARMReg RA = gpr.R(a);
|
||||||
|
Loading…
Reference in New Issue
Block a user