summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2011-03-13 01:38:01 +0100
committerTreeki <treeki@gmail.com>2011-03-13 01:38:01 +0100
commite73bd67e8c61fcbca13cf36a8490d44f90e7cefa (patch)
tree4e81a883c66afde8e0381919b668c754376e5cf9 /src
parent91d99046b83b905cca79406cd219bb500da8613b (diff)
downloadkamek-e73bd67e8c61fcbca13cf36a8490d44f90e7cefa.tar.gz
kamek-e73bd67e8c61fcbca13cf36a8490d44f90e7cefa.zip
removed Another stuff from master branch
Diffstat (limited to '')
-rw-r--r--src/anotherhax.S23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/anotherhax.S b/src/anotherhax.S
deleted file mode 100644
index ca0a658..0000000
--- a/src/anotherhax.S
+++ /dev/null
@@ -1,23 +0,0 @@
-.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
-