diff options
Diffstat (limited to '')
-rw-r--r-- | src/poweruphax.S | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/poweruphax.S b/src/poweruphax.S index bfd8c83..9a334f6 100644 --- a/src/poweruphax.S +++ b/src/poweruphax.S @@ -367,6 +367,20 @@ DontSetHammer: blr
+.global SetHammerToEnItemDCASpecial
+SetHammerToEnItemDCASpecial:
+ cmplwi r4, 0x19
+ b _not19
+ li r0, 0xD
+ sth r0, 0xDCA(r3)
+_not19:
+ cmplwi r4, 6
+ bnelr
+ li r0, 5
+ sth r0, 0xDCA(r3)
+ blr
+
+
#.global EnItem_BindAnimation_Fix
#EnItem_BindAnimation_Fix:
# lhz r0, 0xDCA(r3)
@@ -593,11 +607,36 @@ gotHammerStatus: +.global FixPowerupSound
+FixPowerupSound:
+ # WARNING! This is a bad, bad, bad hack.
+ # I was too lazy to add anything to the linker script, so...
+
+ # We branch at 80141334, so our LR is 80141338
+ # We need to jump to 80141384
+ mflr r3
+ addi r3, r3, 0x4C
+ mtlr r3
+
+ lwz r0, 0x1090(r29)
+ lis r3, PowerupSounds@h
+ ori r3, r3, PowerupSounds@l
+ slwi r4, r0, 2
+ lwzx r4, r3, r4
+ mr r3, r29
+ li r5, 0
+
+ blr
+
+
.data
+PowerupSounds:
+ .long 273, 274, 274, 275, 276, 277, 274, 274
+
SomeTable:
.long SomeTable_802F5580
.long SomeTable_802F56C0
|