You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
InitSpriteAnimStruct <-> _InitSpriteAnimStruct
These were the wrong way around, as the function in home should not be prefixed
This commit is contained in:
@@ -165,7 +165,7 @@ INCBIN "gfx/pokegear/fast_ship.2bpp"
|
||||
InitPokegearModeIndicatorArrow:
|
||||
depixel 4, 2, 4, 0
|
||||
ld a, SPRITE_ANIM_INDEX_POKEGEAR_ARROW
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $0
|
||||
@@ -671,7 +671,7 @@ PokegearMap_InitPlayerIcon:
|
||||
ld b, SPRITE_ANIM_INDEX_BLUE_WALK
|
||||
.got_gender
|
||||
ld a, b
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $10
|
||||
@@ -692,7 +692,7 @@ PokegearMap_InitCursor:
|
||||
push af
|
||||
depixel 0, 0
|
||||
ld a, SPRITE_ANIM_INDEX_POKEGEAR_ARROW
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $04
|
||||
@@ -750,7 +750,7 @@ PokegearRadio_Init:
|
||||
call InitPokegearTilemap
|
||||
depixel 4, 10, 4, 4
|
||||
ld a, SPRITE_ANIM_INDEX_RADIO_TUNING_KNOB
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $08
|
||||
@@ -2743,7 +2743,7 @@ TownMapMon:
|
||||
; Animation/palette
|
||||
depixel 0, 0
|
||||
ld a, SPRITE_ANIM_INDEX_PARTY_MON
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $08
|
||||
@@ -2778,7 +2778,7 @@ TownMapPlayerIcon:
|
||||
ld b, SPRITE_ANIM_INDEX_BLUE_WALK ; Female
|
||||
.got_gender
|
||||
ld a, b
|
||||
call _InitSpriteAnimStruct
|
||||
call InitSpriteAnimStruct
|
||||
ld hl, SPRITEANIMSTRUCT_TILE_ID
|
||||
add hl, bc
|
||||
ld [hl], $10
|
||||
|
Reference in New Issue
Block a user