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 | Port dbsprite macro for OAM y,x,tile,attr data from pokecrystal (diff) | |
| download | pokeyellow-e88eebbc4dc7160b00f1af0008bc4b8bb5ef9aee.tar.gz pokeyellow-e88eebbc4dc7160b00f1af0008bc4b8bb5ef9aee.tar.xz pokeyellow-e88eebbc4dc7160b00f1af0008bc4b8bb5ef9aee.zip | |
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: |
