diff options
author | yenatch <yenatch@gmail.com> | 2016-08-11 15:55:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-11 15:55:32 -0400 |
commit | 700321a7fb2d6c852ffc91cc0b8867526cb76813 (patch) | |
tree | 1a81b2ef5a4d7a2e5a9433e990ea178f5083acbf /macros/move_anim.asm | |
parent | c33ba049a5a993fc678fd1698645039ce4974022 (diff) | |
parent | 050a0162b89c645c4a2a3ed311c4da791fb3de6c (diff) |
Merge pull request #342 from PikalaxALT/master
More label interpretations
Diffstat (limited to 'macros/move_anim.asm')
-rw-r--r-- | macros/move_anim.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/macros/move_anim.asm b/macros/move_anim.asm index 05faf253d..c795f561e 100644 --- a/macros/move_anim.asm +++ b/macros/move_anim.asm @@ -183,9 +183,9 @@ anim_0xed: macro db anim_0xed_command endm - enum anim_jumpand_command ; ee -anim_jumpand: macro - db anim_jumpand_command + enum anim_if_param_and_command ; ee +anim_if_param_and: macro + db anim_if_param_and_command db \1 ; value dw \2 ; address endm @@ -243,9 +243,9 @@ anim_0xf7: macro db anim_0xf7_command endm - enum anim_jumpif_command ; f8 -anim_jumpif: macro - db anim_jumpif_command + enum anim_if_param_equal_command ; f8 +anim_if_param_equal: macro + db anim_if_param_equal_command db \1 ; value dw \2 ; address endm @@ -261,9 +261,9 @@ anim_incvar: macro db anim_incvar_command endm - enum anim_jumpvar_command ; fb -anim_jumpvar: macro - db anim_jumpvar_command + enum anim_if_var_equal_command ; fb +anim_if_var_equal: macro + db anim_if_var_equal_command db \1 ; value dw \2 ; address endm |