mirror of https://github.com/pret/pokecrystal.git
anim_ret_command is an index in a table after all
For some reason I thought BattleAnim_Ret was never used, due to how the battle anim loop would be exited early from. It seems I was wrong. Removing commands before anim_ret without it being part of the `enum` seems to break things.
This commit is contained in:
parent
0aac0f9cfc
commit
595127ba65
|
@ -295,7 +295,7 @@ anim_call: MACRO
|
||||||
dw \1 ; address
|
dw \1 ; address
|
||||||
ENDM
|
ENDM
|
||||||
|
|
||||||
anim_ret_command EQU -1 ; $ff
|
enum anim_ret_command ; $ff
|
||||||
anim_ret: MACRO
|
anim_ret: MACRO
|
||||||
db anim_ret_command
|
db anim_ret_command
|
||||||
ENDM
|
ENDM
|
||||||
|
|
Loading…
Reference in New Issue