diff options
| author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2024-12-27 12:52:30 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-27 12:52:30 -0500 |
| commit | f8a7ac34b90acb71122d71c89aa8e95b4346cf20 (patch) | |
| tree | edffd155c9eb0adcea7517c2303f1c2d50021774 /data/sgb | |
| parent | Remove `-Wnumeric-string=2` (diff) | |
| download | pokeyellow-f8a7ac34b90acb71122d71c89aa8e95b4346cf20.tar.gz pokeyellow-f8a7ac34b90acb71122d71c89aa8e95b4346cf20.tar.xz pokeyellow-f8a7ac34b90acb71122d71c89aa8e95b4346cf20.zip | |
Don't pass redundant label names to `table_width` and `list_start` (#125)
Diffstat (limited to 'data/sgb')
| -rw-r--r-- | data/sgb/sgb_palettes.asm | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
