summaryrefslogtreecommitdiff
path: root/src/anotherhax.S
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/anotherhax.S23
1 files changed, 23 insertions, 0 deletions
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
+