diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-23 09:57:48 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-03-23 09:57:48 -0400 |
| commit | bc59bad170a8d1ff908199587f26a3da59603c08 (patch) | |
| tree | 6fe699f9f084424b5d08106aa1edcbad91956be9 /data/decorations | |
| parent | b2332f27f01ce98d521e4a0c0df6199bb7a6ada3 (diff) | |
Verify uneven list sizes with list_start, li, and assert_list_length macros
Diffstat (limited to 'data/decorations')
| -rw-r--r-- | data/decorations/names.asm | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/data/decorations/names.asm b/data/decorations/names.asm index 3894bc7f..df179a94 100644 --- a/data/decorations/names.asm +++ b/data/decorations/names.asm @@ -1,28 +1,30 @@ DecorationNames: ; entries correspond to constants/deco_constants.asm - db "CANCEL@" - db "PUT IT AWAY@" - db "MAGNAPLANT@" - db "TROPICPLANT@" - db "JUMBOPLANT@" - db "TOWN MAP@" - db "NES@" - db "SUPER NES@" - db "NINTENDO64@" - db "VIRTUAL BOY@" - db "GOLD TROPHY@" - db "SILVER TROPHY@" - db "SURF PIKACHU DOLL@" - db " BED@" - db " CARPET@" - db " POSTER@" - db " DOLL@" - db "BIG @" - db "FEATHERY@" - db "PIKACHU@" - db "PINK@" - db "POLKADOT@" - db "RED@" - db "BLUE@" - db "YELLOW@" - db "GREEN@" + list_start DecorationNames + li "CANCEL" + li "PUT IT AWAY" + li "MAGNAPLANT" + li "TROPICPLANT" + li "JUMBOPLANT" + li "TOWN MAP" + li "NES" + li "SUPER NES" + li "NINTENDO64" + li "VIRTUAL BOY" + li "GOLD TROPHY" + li "SILVER TROPHY" + li "SURF PIKACHU DOLL" + li " BED" + li " CARPET" + li " POSTER" + li " DOLL" + li "BIG " + li "FEATHERY" + li "PIKACHU" + li "PINK" + li "POLKADOT" + li "RED" + li "BLUE" + li "YELLOW" + li "GREEN" + assert_list_length NUM_DECO_NAMES |
