diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2025-02-27 13:07:17 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-27 13:07:17 -0500 |
| commit | b460637b812f9829b69203f32e9a4f42a43070b6 (patch) | |
| tree | e5ee8278afa41419cf1b909dd997a48ef6801517 /engine | |
| parent | Fix hardcoded address in Blue VC patch (diff) | |
| download | pokeyellow-b460637b812f9829b69203f32e9a4f42a43070b6.tar.gz pokeyellow-b460637b812f9829b69203f32e9a4f42a43070b6.tar.xz pokeyellow-b460637b812f9829b69203f32e9a4f42a43070b6.zip | |
Avoid using `EQUS` when `EQU` or `MACRO` will do (#496)
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/gfx/mon_icons.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/gfx/mon_icons.asm b/engine/gfx/mon_icons.asm index 24e9446e..49e789a5 100644 --- a/engine/gfx/mon_icons.asm +++ b/engine/gfx/mon_icons.asm @@ -283,13 +283,13 @@ INCLUDE "data/pokemon/menu_icons.asm" DEF INC_FRAME_1 EQUS "0, $20" DEF INC_FRAME_2 EQUS "$20, $20" -BugIconFrame1: INCBIN "gfx/icons/bug.2bpp", INC_FRAME_1 -PlantIconFrame1: INCBIN "gfx/icons/plant.2bpp", INC_FRAME_1 -BugIconFrame2: INCBIN "gfx/icons/bug.2bpp", INC_FRAME_2 -PlantIconFrame2: INCBIN "gfx/icons/plant.2bpp", INC_FRAME_2 -SnakeIconFrame1: INCBIN "gfx/icons/snake.2bpp", INC_FRAME_1 +BugIconFrame1: INCBIN "gfx/icons/bug.2bpp", INC_FRAME_1 +PlantIconFrame1: INCBIN "gfx/icons/plant.2bpp", INC_FRAME_1 +BugIconFrame2: INCBIN "gfx/icons/bug.2bpp", INC_FRAME_2 +PlantIconFrame2: INCBIN "gfx/icons/plant.2bpp", INC_FRAME_2 +SnakeIconFrame1: INCBIN "gfx/icons/snake.2bpp", INC_FRAME_1 QuadrupedIconFrame1: INCBIN "gfx/icons/quadruped.2bpp", INC_FRAME_1 -SnakeIconFrame2: INCBIN "gfx/icons/snake.2bpp", INC_FRAME_2 +SnakeIconFrame2: INCBIN "gfx/icons/snake.2bpp", INC_FRAME_2 QuadrupedIconFrame2: INCBIN "gfx/icons/quadruped.2bpp", INC_FRAME_2 TradeBubbleIconGFX: INCBIN "gfx/trade/bubble.2bpp" |
