Don't pass redundant label names to table_width
and list_start
(#1160)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
TrainerClassAttributes:
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
table_width NUM_TRAINER_ATTRIBUTES, TrainerClassAttributes
|
||||
table_width NUM_TRAINER_ATTRIBUTES
|
||||
|
||||
; Falkner
|
||||
db NO_ITEM, NO_ITEM ; items
|
||||
|
@@ -1,6 +1,6 @@
|
||||
TrainerClassNames::
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
list_start TrainerClassNames
|
||||
list_start
|
||||
li "LEADER"
|
||||
li "LEADER"
|
||||
li "LEADER"
|
||||
|
@@ -1,6 +1,6 @@
|
||||
TrainerClassDVs:
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
table_width 2, TrainerClassDVs
|
||||
table_width 2
|
||||
; atk,def,spd,spc
|
||||
dn 9, 10, 7, 7 ; FALKNER
|
||||
dn 8, 8, 8, 8 ; WHITNEY
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
TrainerEncounterMusic::
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
table_width 1, TrainerEncounterMusic
|
||||
table_width 1
|
||||
db MUSIC_HIKER_ENCOUNTER ; none
|
||||
db MUSIC_YOUNGSTER_ENCOUNTER ; falkner
|
||||
db MUSIC_LASS_ENCOUNTER ; whitney
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
BTTrainerClassGenders:
|
||||
; entries correspond to trainer classes
|
||||
table_width 1, BTTrainerClassGenders
|
||||
table_width 1
|
||||
db MALE ; FALKNER
|
||||
db FEMALE ; WHITNEY
|
||||
db FEMALE ; BUGSY
|
||||
|
@@ -4,7 +4,7 @@ TrainerPalettes:
|
||||
; Each .gbcpal is generated from the corresponding .png, and
|
||||
; only the middle two colors are included, not black or white.
|
||||
|
||||
table_width PAL_COLOR_SIZE * 2, TrainerPalettes
|
||||
table_width PAL_COLOR_SIZE * 2
|
||||
|
||||
PlayerPalette: ; Chris uses the same colors as Cal
|
||||
INCBIN "gfx/trainers/cal.gbcpal", middle_colors
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
TrainerGroups:
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
table_width 2, TrainerGroups
|
||||
table_width 2
|
||||
dw FalknerGroup
|
||||
dw WhitneyGroup
|
||||
dw BugsyGroup
|
||||
|
@@ -2,7 +2,7 @@
|
||||
|
||||
TrainerPicPointers::
|
||||
; entries correspond to trainer classes (see constants/trainer_constants.asm)
|
||||
table_width 3, TrainerPicPointers
|
||||
table_width 3
|
||||
dba_pic FalknerPic
|
||||
dba_pic WhitneyPic
|
||||
dba_pic BugsyPic
|
||||
|
@@ -1,6 +1,6 @@
|
||||
BTTrainerClassSprites:
|
||||
; entries correspond to trainer classes
|
||||
table_width 1, BTTrainerClassSprites
|
||||
table_width 1
|
||||
db SPRITE_FALKNER
|
||||
db SPRITE_WHITNEY
|
||||
db SPRITE_BUGSY
|
||||
|
Reference in New Issue
Block a user