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/items | |
| 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/items')
| -rw-r--r-- | data/items/key_items.asm | 2 | ||||
| -rw-r--r-- | data/items/tm_prices.asm | 2 |
2 files changed, 2 insertions, 2 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 |
