From f8a7ac34b90acb71122d71c89aa8e95b4346cf20 Mon Sep 17 00:00:00 2001 From: Rangi <35663410+Rangi42@users.noreply.github.com> Date: Fri, 27 Dec 2024 12:52:30 -0500 Subject: Don't pass redundant label names to `table_width` and `list_start` (#125) --- data/items/names.asm | 2 +- data/items/prices.asm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'data/items') 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 -- cgit v1.3.1-sl0p