diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-02-11 13:42:36 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-02-13 18:31:10 +0100 |
commit | 0d81f1c470339efeb1f136aa5caab56c389be30a (patch) | |
tree | a09cdab6a590bf8d152356a11625e001c7c694c3 /home/sprite_anims.asm | |
parent | 53cf08b6b37b319a32b540af452f963747d03e2c (diff) |
InitSpriteAnimStruct <-> _InitSpriteAnimStruct
These were the wrong way around, as the function in home should not be
prefixed
Diffstat (limited to 'home/sprite_anims.asm')
-rw-r--r-- | home/sprite_anims.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/sprite_anims.asm b/home/sprite_anims.asm index 7f271575e..816849981 100644 --- a/home/sprite_anims.asm +++ b/home/sprite_anims.asm @@ -17,16 +17,16 @@ PushLYOverrides:: ld [wRequested2bpp], a ret -_InitSpriteAnimStruct:: +InitSpriteAnimStruct:: ld [wSpriteAnimIDBuffer], a ldh a, [hROMBank] push af - ld a, BANK(InitSpriteAnimStruct) + ld a, BANK(_InitSpriteAnimStruct) rst Bankswitch ld a, [wSpriteAnimIDBuffer] - call InitSpriteAnimStruct + call _InitSpriteAnimStruct pop af rst Bankswitch |