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/sgb/sgb_palettes.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'data/sgb') diff --git a/data/sgb/sgb_palettes.asm b/data/sgb/sgb_palettes.asm index b9a4e95c..4f70558e 100644 --- a/data/sgb/sgb_palettes.asm +++ b/data/sgb/sgb_palettes.asm @@ -1,6 +1,6 @@ SuperPalettes: ; entries correspond to PAL_* constants - table_width 2 * 4, SuperPalettes + table_width 2 * 4 RGB 31,31,30, 23,26,19, 23,27,31, 06,06,06 ; PAL_ROUTE RGB 31,31,30, 28,27,31, 23,27,31, 06,06,06 ; PAL_PALLET RGB 31,31,30, 26,31,21, 23,27,31, 06,06,06 ; PAL_VIRIDIAN @@ -45,7 +45,7 @@ SuperPalettes: GBCBasePalettes: ; entries correspond to PAL_* constants - table_width 2 * 4, GBCBasePalettes + table_width 2 * 4 RGB 31,31,31, 16,31,04, 11,23,31, 03,03,03 ; PAL_ROUTE RGB 31,31,31, 23,17,31, 11,23,31, 03,03,03 ; PAL_PALLET RGB 31,31,31, 19,31,00, 11,23,31, 03,03,03 ; PAL_VIRIDIAN -- cgit v1.3.1-sl0p