diff options
| author | Rangi <sylvie.oukaour+rangi42@gmail.com> | 2026-03-30 17:42:50 -0400 |
|---|---|---|
| committer | Rangi <sylvie.oukaour+rangi42@gmail.com> | 2026-03-30 17:42:50 -0400 |
| commit | 812a7d17d7a0da29baedfdde4b493e6b79864ab3 (patch) | |
| tree | 66071355554ee30e4b2c4ac03da6f26dd885d27c /data | |
| parent | Repair Iwata Asks URL (#568) (diff) | |
| download | pokeyellow-812a7d17d7a0da29baedfdde4b493e6b79864ab3.tar.gz pokeyellow-812a7d17d7a0da29baedfdde4b493e6b79864ab3.tar.xz pokeyellow-812a7d17d7a0da29baedfdde4b493e6b79864ab3.zip | |
Don't pass redundant label names to `nybble_array` and `bit_array`
Diffstat (limited to 'data')
| -rw-r--r-- | data/items/key_items.asm | 2 | ||||
| -rw-r--r-- | data/items/tm_prices.asm | 2 | ||||
| -rw-r--r-- | data/pokemon/menu_icons.asm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/data/items/key_items.asm b/data/items/key_items.asm index 97f5f093..1750811f 100644 --- a/data/items/key_items.asm +++ b/data/items/key_items.asm @@ -1,5 +1,5 @@ KeyItemFlags: - bit_array KeyItemFlags + bit_array dbit FALSE ; MASTER_BALL dbit FALSE ; ULTRA_BALL dbit FALSE ; GREAT_BALL diff --git a/data/items/tm_prices.asm b/data/items/tm_prices.asm index 89501e32..7dc500ec 100644 --- a/data/items/tm_prices.asm +++ b/data/items/tm_prices.asm @@ -1,6 +1,6 @@ TechnicalMachinePrices: ; In thousands (nybbles). - nybble_array TechnicalMachinePrices + nybble_array nybble 3 ; TM01 nybble 2 ; TM02 nybble 2 ; TM03 diff --git a/data/pokemon/menu_icons.asm b/data/pokemon/menu_icons.asm index d6ed5b35..207c31e9 100644 --- a/data/pokemon/menu_icons.asm +++ b/data/pokemon/menu_icons.asm @@ -1,5 +1,5 @@ MonPartyData: - nybble_array MonPartyData + nybble_array nybble ICON_GRASS ; Bulbasaur nybble ICON_GRASS ; Ivysaur nybble ICON_GRASS ; Venusaur |
