mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
[ARM] Fix ori again.
This commit is contained in:
@ -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);
|
||||||
|
Reference in New Issue
Block a user