diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
commit | a1951cefc09035e11077a433b28ec8c66b3b03db (patch) | |
tree | 4de98db5a6edb6d74192028d50893da2b764421f /engine/events/bug_contest/display_stats.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/events/bug_contest/display_stats.asm')
-rw-r--r-- | engine/events/bug_contest/display_stats.asm | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/engine/events/bug_contest/display_stats.asm b/engine/events/bug_contest/display_stats.asm index 92b89a38f..13b90d0a3 100644 --- a/engine/events/bug_contest/display_stats.asm +++ b/engine/events/bug_contest/display_stats.asm @@ -4,7 +4,7 @@ DisplayCaughtContestMonStats: ; cc000 call ClearSprites call LoadFontsBattleExtra - ld hl, Options + ld hl, wOptions ld a, [hl] push af set 4, [hl] @@ -38,24 +38,24 @@ DisplayCaughtContestMonStats: ; cc000 ld a, [wContestMon] ld [wd265], a call GetPokemonName - ld de, StringBuffer1 + ld de, wStringBuffer1 hlcoord 1, 2 call PlaceString ld h, b ld l, c ld a, [wContestMonLevel] - ld [TempMonLevel], a + ld [wTempMonLevel], a call PrintLevel - ld de, EnemyMonNick + ld de, wEnemyMonNick hlcoord 1, 8 call PlaceString ld h, b ld l, c - ld a, [EnemyMonLevel] - ld [TempMonLevel], a + ld a, [wEnemyMonLevel] + ld [wTempMonLevel], a call PrintLevel hlcoord 11, 4 @@ -64,14 +64,14 @@ DisplayCaughtContestMonStats: ; cc000 call PrintNum hlcoord 11, 10 - ld de, EnemyMonMaxHP + ld de, wEnemyMonMaxHP call PrintNum ld hl, SwitchMonText call PrintText pop af - ld [Options], a + ld [wOptions], a call WaitBGMap ld b, SCGB_DIPLOMA |