diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-07-19 23:04:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-19 23:04:16 -0400 |
commit | 0177688ad4d923c4970009fa87df48605bb43ed6 (patch) | |
tree | 4c44fbb1813e78eb00f7c1690d2c23099a49113b /scripts/ViridianGym.asm | |
parent | d44c7c305c3f94b59e3e2c008408779836a0020a (diff) | |
parent | df62b8e81a4b0964d5f21dcc37916f996b5bd241 (diff) |
Merge pull request #279 from Rangi42/master
Identify sprite and battle animation data
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: |