diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2024-12-27 12:52:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 12:52:24 -0500 |
| commit | cd647df3b551cea154317a572ace9052727aa72b (patch) | |
| tree | 01c6fbdd9d3a6a3e21232799793f6afeaf80b40a /data/items | |
| parent | Use RGBDS 0.9.0 (#482) (diff) | |
| download | pokeyellow-cd647df3b551cea154317a572ace9052727aa72b.tar.gz pokeyellow-cd647df3b551cea154317a572ace9052727aa72b.tar.xz pokeyellow-cd647df3b551cea154317a572ace9052727aa72b.zip | |
Don't pass redundant label names to `table_width` and `list_start` (#484)
Diffstat (limited to 'data/items')
| -rw-r--r-- | data/items/names.asm | 2 | ||||
| -rw-r--r-- | data/items/prices.asm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/items/names.asm b/data/items/names.asm index 44a21c38..bab26efc 100644 --- a/data/items/names.asm +++ b/data/items/names.asm @@ -1,5 +1,5 @@ ItemNames:: - list_start ItemNames + list_start li "MASTER BALL" li "ULTRA BALL" li "GREAT BALL" diff --git a/data/items/prices.asm b/data/items/prices.asm index d01c0b7e..aefd1078 100644 --- a/data/items/prices.asm +++ b/data/items/prices.asm @@ -1,5 +1,5 @@ ItemPrices:: - table_width 3, ItemPrices + table_width 3 bcd3 0 ; MASTER_BALL bcd3 1200 ; ULTRA_BALL bcd3 600 ; GREAT_BALL |
