diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-28 21:22:35 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2017-12-28 22:13:39 -0500 |
commit | b9a68fec2589eb6969be63e6ed1eb3fca312c307 (patch) | |
tree | 59b5db70690a9f9041e4964adae1722b4d178a1b /engine/pic_animation.asm | |
parent | 4c35f3ac8506e5f326658bbab91c257584f7b716 (diff) |
Consistent if/else/endc (matches rept/endr) and DEF (matches BANK/HIGH/LOW)
Diffstat (limited to 'engine/pic_animation.asm')
-rw-r--r-- | engine/pic_animation.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/pic_animation.asm b/engine/pic_animation.asm index 3c826b8b7..33b770b14 100644 --- a/engine/pic_animation.asm +++ b/engine/pic_animation.asm @@ -55,7 +55,7 @@ AnimateMon_Unused: ; d003a pokeanim: MACRO rept _NARG ; Workaround for a bug where macro args can't come after the start of a symbol -if !def(\1_POKEANIM) +if !DEF(\1_POKEANIM) \1_POKEANIM EQUS "PokeAnim_\1_" endc db (\1_POKEANIM - PokeAnim_SetupCommands) / 2 |