mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fix ARM Jit's subfic when d != a.
Missed this path previously, Crazy Taxi hits it.
This commit is contained in:
@ -170,7 +170,7 @@ void JitArm::subfic(UGeckoInstruction inst)
|
||||
// Flags act exactly like subtracting from 0
|
||||
SUBS(gpr.R(d), gpr.R(d), gpr.R(a));
|
||||
// Output carry is inverted
|
||||
SetCC(CC_CC);
|
||||
SetCC(CC_CS);
|
||||
ORR(tmp, tmp, mask);
|
||||
SetCC();
|
||||
STR(tmp, R9, PPCSTATE_OFF(spr[SPR_XER]));
|
||||
|
Reference in New Issue
Block a user