diff options
author | yenatch <yenatch@gmail.com> | 2017-12-28 19:34:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-28 19:34:43 -0500 |
commit | 82a05a1752b476caab8951fe03f539dcc1a63669 (patch) | |
tree | 972f867159ded40695e868338bb697a303335b62 /engine/pic_animation.asm | |
parent | e2b378f5e32ea1416fbc9ac5e96d23be244e4a6b (diff) | |
parent | 50fc9c3389ae8130d3670683f22f3e49555c57a3 (diff) |
Merge pull request #443 from xCrystal/master
Misc style cleanup and documentation
Diffstat (limited to 'engine/pic_animation.asm')
-rw-r--r-- | engine/pic_animation.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/pic_animation.asm b/engine/pic_animation.asm index 2b93ef749..b060f5b4b 100644 --- a/engine/pic_animation.asm +++ b/engine/pic_animation.asm @@ -56,7 +56,7 @@ pokeanim: MACRO rept _NARG ; Workaround for a bug where macro args can't come after the start of a symbol if !def(\1_POKEANIM) -\1_POKEANIM equs "PokeAnim_\1_" +\1_POKEANIM EQUS "PokeAnim_\1_" endc db (\1_POKEANIM - PokeAnim_SetupCommands) / 2 shift @@ -142,9 +142,9 @@ SetUpPokeAnim: ; d00b4 ; d00da PokeAnim_SetupCommands: ; d00da -setup_command: macro +setup_command: MACRO \1_: dw \1 -endm +ENDM setup_command PokeAnim_Finish setup_command PokeAnim_BasePic setup_command PokeAnim_SetWait @@ -586,7 +586,7 @@ x = x + 1 endr y = y + 7 endr -endm +ENDM PokeAnim_ConvertAndApplyBitmask: ; d036b xor a @@ -1120,7 +1120,7 @@ HOF_AnimateFrontpic: ; d066e Predef 49 ld l, e push bc push hl - ld de, VTiles2 + ld de, vTiles2 predef GetAnimatedFrontpicPredef pop hl pop bc |