summaryrefslogtreecommitdiff
path: root/event
diff options
context:
space:
mode:
authorMarcus Huderle <huderlem@gmail.com>2017-11-29 17:13:47 -0800
committerGitHub <noreply@github.com>2017-11-29 17:13:47 -0800
commit7a2a20528136b9a2452a313cd50c46a45f9a5cb0 (patch)
tree4e7a32f2b809f5458cbfa6b068fbaa8e3e49e5c6 /event
parentc28be02a193a088354131f260781a9081825eeee (diff)
parent2cc2f057e8a4429cc328d9f1fe578142e82cfc49 (diff)
Merge pull request #400 from mid-kid/master
mid-kid's amazing patches act 2
Diffstat (limited to 'event')
-rwxr-xr-xevent/celebi.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/event/celebi.asm b/event/celebi.asm
index 05f26fe2e..7c8646ec7 100755
--- a/event/celebi.asm
+++ b/event/celebi.asm
@@ -214,14 +214,14 @@ UpdateCelebiPosition: ; 49aa2 (12:5aa2)
jr nc, .left
ld hl, SPRITEANIMSTRUCT_FRAMESET_ID
add hl, bc
- ld a, $41
+ ld a, SPRITE_ANIM_FRAMESET_CELEBI_RIGHT
call ReinitSpriteAnimFrame
jr .done
.left
ld hl, SPRITEANIMSTRUCT_FRAMESET_ID
add hl, bc
- ld a, $40
+ ld a, SPRITE_ANIM_FRAMESET_CELEBI_LEFT
call ReinitSpriteAnimFrame
.done
ret
@@ -231,7 +231,7 @@ UpdateCelebiPosition: ; 49aa2 (12:5aa2)
pop af
ld hl, SPRITEANIMSTRUCT_FRAMESET_ID
add hl, bc
- ld a, $40
+ ld a, SPRITE_ANIM_FRAMESET_CELEBI_LEFT
call ReinitSpriteAnimFrame
ret