summaryrefslogtreecommitdiff
path: root/scripts/CeladonGym.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2020-07-18 14:01:13 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2020-07-18 14:01:13 -0400
commite88eebbc4dc7160b00f1af0008bc4b8bb5ef9aee (patch)
tree8b9f3f0cd74cb19d72ab4d99071900569038fe2a /scripts/CeladonGym.asm
parent76289dfda0b7405944e10a78b7381c723475bea4 (diff)
Consistent labels for Gym name scripts
Diffstat (limited to 'scripts/CeladonGym.asm')
-rwxr-xr-xscripts/CeladonGym.asm12
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/CeladonGym.asm b/scripts/CeladonGym.asm
index 669492cf..2b695819 100755
--- a/scripts/CeladonGym.asm
+++ b/scripts/CeladonGym.asm
@@ -2,7 +2,7 @@ CeladonGym_Script:
ld hl, wCurrentMapScriptFlags
bit 6, [hl]
res 6, [hl]
- call nz, CeladonGymScript_48927
+ call nz, .LoadNames
call EnableAutoTextBoxDrawing
ld hl, CeladonGymTrainerHeader0
ld de, CeladonGym_ScriptPointers
@@ -11,15 +11,15 @@ CeladonGym_Script:
ld [wCeladonGymCurScript], a
ret
-CeladonGymScript_48927:
- ld hl, Gym4CityName
- ld de, Gym4LeaderName
+.LoadNames:
+ ld hl, .CityName
+ ld de, .LeaderName
jp LoadGymLeaderAndCityName
-Gym4CityName:
+.CityName:
db "CELADON CITY@"
-Gym4LeaderName:
+.LeaderName:
db "ERIKA@"
CeladonGymText_48943: