diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-10-04 16:33:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-04 16:33:09 -0400 |
commit | 712ee66e6154d734ea3960cc14ff1f4c1aaa639e (patch) | |
tree | c1e477bdf115f9191f19eb0cde8d75e1c606ab82 /asm/macros.inc | |
parent | 0cf4c9f25c2fe165c53a0c24f93a31a27ea42d6a (diff) | |
parent | 44b5d84a840c2c88972d72432e85b59cdc472565 (diff) |
Merge pull request #109 from PikalaxALT/wild_pokenmon_area
Wild pokemon area
Diffstat (limited to 'asm/macros.inc')
-rw-r--r-- | asm/macros.inc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/asm/macros.inc b/asm/macros.inc index e6813d319..4eae2cccc 100644 --- a/asm/macros.inc +++ b/asm/macros.inc @@ -65,10 +65,9 @@ .endm .macro subsprite x, y, priority, tile_num_offset, size - .2byte \x - .2byte \y + .byte \x + .byte \y .2byte ((\priority) << 14) | ((\tile_num_offset) << 4) | SPRITE_SIZE_\size - .2byte 0 @ padding .endm .macro obj_image_anim_frame pic_id, duration, flags = 0 |