diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-18 14:01:13 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-18 14:01:13 -0400 |
commit | e88eebbc4dc7160b00f1af0008bc4b8bb5ef9aee (patch) | |
tree | 8b9f3f0cd74cb19d72ab4d99071900569038fe2a /scripts/ViridianGym.asm | |
parent | 76289dfda0b7405944e10a78b7381c723475bea4 (diff) |
Consistent labels for Gym name scripts
Diffstat (limited to 'scripts/ViridianGym.asm')
-rwxr-xr-x | scripts/ViridianGym.asm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/scripts/ViridianGym.asm b/scripts/ViridianGym.asm index 4a5dd6b7..68da9301 100755 --- a/scripts/ViridianGym.asm +++ b/scripts/ViridianGym.asm @@ -1,6 +1,6 @@ ViridianGym_Script: - ld hl, Gym8CityName - ld de, Gym8LeaderName + ld hl, .CityName + ld de, .LeaderName call LoadGymLeaderAndCityName call EnableAutoTextBoxDrawing ld hl, ViridianGymTrainerHeader0 @@ -10,9 +10,10 @@ ViridianGym_Script: ld [wViridianGymCurScript], a ret -Gym8CityName: +.CityName: db "VIRIDIAN CITY@" -Gym8LeaderName: + +.LeaderName: db "GIOVANNI@" ViridianGymScript_748d6: |