Don't pass redundant label names to table_width
and list_start
(#1160)
This commit is contained in:
@@ -2,7 +2,7 @@ BattleTowerTrainers:
|
||||
; The trainer class is not used in Crystal 1.0 due to a bug.
|
||||
; Instead, the sixth character in the trainer's name is used.
|
||||
; See BattleTowerText in engine/events/battle_tower/trainer_text.asm.
|
||||
table_width (NAME_LENGTH - 1) + 1, BattleTowerTrainers
|
||||
table_width (NAME_LENGTH - 1) + 1
|
||||
; name, class
|
||||
db "HANSON@@@@", FISHER
|
||||
db "SAWYER@@@@", POKEMANIAC
|
||||
|
@@ -1,6 +1,6 @@
|
||||
BattleTowerMons:
|
||||
; 10 groups (one per floor level) of 21 mons (BATTLETOWER_NUM_UNIQUE_MON).
|
||||
table_width NICKNAMED_MON_STRUCT_LENGTH, BattleTowerMons
|
||||
table_width NICKNAMED_MON_STRUCT_LENGTH
|
||||
|
||||
; BattleTowerMons group 1
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
BattleTowerTrainerData:: ; ???
|
||||
; 70 tables (BATTLETOWER_NUM_UNIQUE_TRAINERS) of 18 two-argument entries (total size BATTLETOWER_TRAINERDATALENGTH).
|
||||
; Second argument points to an entry in Unknown_170470, to which the first argument is compared.
|
||||
table_width BATTLETOWER_TRAINERDATALENGTH, BattleTowerTrainerData
|
||||
table_width BATTLETOWER_TRAINERDATALENGTH
|
||||
|
||||
; BattleTowerTrainerData table 1:
|
||||
db $37, 3
|
||||
|
Reference in New Issue
Block a user