diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-05 12:44:21 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-02-05 12:44:21 -0500 |
commit | 4264d53eb681ea8a3b1a71426ac485078b80a8ca (patch) | |
tree | 07ccb1d395c766b49c758dcb34de00bc70881cfc /engine/tilesets | |
parent | 7d3ea88611efbc2f9b903063e2816b1cae1bad35 (diff) |
Identify some more labels
Diffstat (limited to 'engine/tilesets')
-rw-r--r-- | engine/tilesets/tileset_anims.asm | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/engine/tilesets/tileset_anims.asm b/engine/tilesets/tileset_anims.asm index 8ed05c625..c29ffdb50 100644 --- a/engine/tilesets/tileset_anims.asm +++ b/engine/tilesets/tileset_anims.asm @@ -477,11 +477,11 @@ ForestTreeLeftAnimation: ; Only during the Celebi event. ld a, [wCelebiEvent] bit CELEBIEVENT_FOREST_IS_RESTLESS_F, a - jr nz, .asm_fc46c + jr nz, .do_animation ld hl, ForestTreeLeftFrames - jr .asm_fc47d + jr .got_frames -.asm_fc46c +.do_animation ld a, [wTileAnimationTimer] call GetForestTreeFrame add a @@ -493,7 +493,7 @@ ForestTreeLeftAnimation: adc HIGH(ForestTreeLeftFrames) ld h, a -.asm_fc47d +.got_frames ld sp, hl ld hl, vTiles2 tile $0c jp WriteTile @@ -514,11 +514,11 @@ ForestTreeRightAnimation: ; Only during the Celebi event. ld a, [wCelebiEvent] bit CELEBIEVENT_FOREST_IS_RESTLESS_F, a - jr nz, .asm_fc4d4 + jr nz, .do_animation ld hl, ForestTreeRightFrames - jr .asm_fc4eb + jr .got_frames -.asm_fc4d4 +.do_animation ld a, [wTileAnimationTimer] call GetForestTreeFrame add a @@ -534,7 +534,7 @@ ForestTreeRightAnimation: add hl, bc pop bc -.asm_fc4eb +.got_frames ld sp, hl ld hl, vTiles2 tile $0f jp WriteTile @@ -547,14 +547,14 @@ ForestTreeLeftAnimation2: ; Only during the Celebi event. ld a, [wCelebiEvent] bit CELEBIEVENT_FOREST_IS_RESTLESS_F, a - jr nz, .asm_fc502 + jr nz, .do_animation ld hl, ForestTreeLeftFrames - jr .asm_fc515 + jr .got_frames -.asm_fc502 +.do_animation ld a, [wTileAnimationTimer] call GetForestTreeFrame - xor 2 + xor %10 add a add a add a @@ -564,7 +564,7 @@ ForestTreeLeftAnimation2: adc HIGH(ForestTreeLeftFrames) ld h, a -.asm_fc515 +.got_frames ld sp, hl ld hl, vTiles2 tile $0c jp WriteTile @@ -577,14 +577,14 @@ ForestTreeRightAnimation2: ; Only during the Celebi event. ld a, [wCelebiEvent] bit CELEBIEVENT_FOREST_IS_RESTLESS_F, a - jr nz, .asm_fc52c + jr nz, .do_animation ld hl, ForestTreeRightFrames - jr .asm_fc545 + jr .got_frames -.asm_fc52c +.do_animation ld a, [wTileAnimationTimer] call GetForestTreeFrame - xor 2 + xor %10 add a add a add a @@ -598,7 +598,7 @@ ForestTreeRightAnimation2: add hl, bc pop bc -.asm_fc545 +.got_frames ld sp, hl ld hl, vTiles2 tile $0f jp WriteTile |