From 7d4e4c0b34a613dd3c0220475ae4e448197522c1 Mon Sep 17 00:00:00 2001 From: Treeki Date: Sat, 12 Mar 2011 23:17:12 +0100 Subject: initial commit. now I can start playing with stuff! --- src/anotherhax.S | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/anotherhax.S (limited to 'src/anotherhax.S') diff --git a/src/anotherhax.S b/src/anotherhax.S new file mode 100644 index 0000000..ca0a658 --- /dev/null +++ b/src/anotherhax.S @@ -0,0 +1,23 @@ +.set sp, 1 + +.extern continueFromFlagObjCheck +.extern returnFromFlagObjCheck + +.global fix38WithJumpCoin + +.text + +fix38WithJumpCoin: + # hacky fix because I can't figure out how to do it the right way + + # check actor type for EN_COIN_JUMP + lhz r0, 8(r3) + cmplwi r0, 403 + bne dontContinue + b continueFromFlagObjCheck +dontContinue: + + # it wasn't that, so just return 0 + li r3, 0 + b returnFromFlagObjCheck + -- cgit v1.2.3