diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 00:38:52 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2017-12-15 00:38:52 -0500 |
commit | fecc5c339adf8d4c2939364e49e4ba5c46f207ba (patch) | |
tree | 5bf595de626df3f2dfc6137adcddf3074f6f3e8c /macros/scripts/gfx_anim.asm | |
parent | 28aec67f6e99db64582f66b26a5c898fe9943e00 (diff) |
More comments for macros
Diffstat (limited to 'macros/scripts/gfx_anim.asm')
-rw-r--r-- | macros/scripts/gfx_anim.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/macros/scripts/gfx_anim.asm b/macros/scripts/gfx_anim.asm index cb85aba09..a3fa710a0 100644 --- a/macros/scripts/gfx_anim.asm +++ b/macros/scripts/gfx_anim.asm @@ -14,31 +14,31 @@ endc enum_start $fc - enum delanim_command ; fc + enum delanim_command ; $fc delanim: macro ; used for oam db delanim_command endm - enum dorepeat_command ; fd + enum dorepeat_command ; $fd dorepeat: macro db dorepeat_command db \1 ; # endm - enum setrepeat_command ; fe + enum setrepeat_command ; $fe setrepeat: macro db setrepeat_command db \1 ; # endm - enum endanim_command ; ff + enum endanim_command ; $ff endanim: macro db endanim_command endm __enum__ = $fe - enum dorestart_command ; fe + enum dorestart_command ; $fe dorestart: macro ; used for oam db dorestart_command endm |