Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[ARM] Disable subfic, it prevents Wind Waker from booting into a save…
… game.
  • Loading branch information
Sonicadvance1 committed Oct 3, 2013
1 parent da46da1 commit fe3d0c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/Core/Src/PowerPC/JitArm32/JitArm_Integer.cpp
Expand Up @@ -117,10 +117,12 @@ void JitArm::FinalizeCarry(ARMReg reg)
STR(tmp, R9, PPCSTATE_OFF(spr[SPR_XER]));
gpr.Unlock(tmp);
}
// Wrong - prevents WW from loading in to a game and also inverted intro logos
void JitArm::subfic(UGeckoInstruction inst)
{
INSTRUCTION_START
JITDISABLE(bJITIntegerOff)
Default(inst); return;
int a = inst.RA, d = inst.RD;

int imm = inst.SIMM_16;
Expand Down

0 comments on commit fe3d0c9

Please sign in to comment.