summaryrefslogtreecommitdiff
path: root/home/sprite_anims.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/sprite_anims.asm')
-rwxr-xr-xhome/sprite_anims.asm22
1 files changed, 15 insertions, 7 deletions
diff --git a/home/sprite_anims.asm b/home/sprite_anims.asm
index 5f1d46f3..7b5b22d5 100755
--- a/home/sprite_anims.asm
+++ b/home/sprite_anims.asm
@@ -1,23 +1,31 @@
-InitAnimatedObjectStruct::
+InitSpriteAnimStruct::
ld [wAnimatedObjectStructIDBuffer], a
ldh a, [hROMBank]
push af
- ld a, BANK(InitAnimatedObjectStruct_) ; $23
+
+ ld a, BANK(_InitSpriteAnimStruct)
rst Bankswitch
ld a, [wAnimatedObjectStructIDBuffer]
- call InitAnimatedObjectStruct_ ; $51f7
+
+ call _InitSpriteAnimStruct
+
pop af
rst Bankswitch
+
ret
-ReinitAnimatedObjectFrame::
+ReinitSpriteAnimFrame::
ld [wAnimatedObjectStructIDBuffer], a
ldh a, [hROMBank]
push af
- ld a, BANK(ReinitAnimatedObjectFrame_) ; $23
+
+ ld a, BANK(_ReinitSpriteAnimFrame)
rst Bankswitch
ld a, [wAnimatedObjectStructIDBuffer]
- call ReinitAnimatedObjectFrame_ ; $5332
+
+ call _ReinitSpriteAnimFrame
+
pop af
rst Bankswitch
- ret \ No newline at end of file
+
+ ret