Fix anim_ret_command

This commit is contained in:
mid-kid 2018-07-15 11:56:57 +02:00
parent fdf10c9fac
commit 04d0490c4c
2 changed files with 2 additions and 2 deletions

View File

@ -284,7 +284,7 @@ RunBattleAnimCommand:
.loop
call GetBattleAnimByte
cp $ff
cp anim_ret_command
jr nz, .not_done_with_anim
; Return from a subroutine.

View File

@ -295,7 +295,7 @@ anim_call: MACRO
dw \1 ; address
ENDM
enum anim_ret_command ; $ff
anim_ret_command EQU -1 ; $ff
anim_ret: MACRO
db anim_ret_command
ENDM