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/player_gfx.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/player_gfx.asm')
-rw-r--r-- | engine/player_gfx.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/player_gfx.asm b/engine/player_gfx.asm index 21929e32c..282d2e22f 100644 --- a/engine/player_gfx.asm +++ b/engine/player_gfx.asm @@ -7,7 +7,7 @@ Unreferenced_Function88248: ; 88248 .okay ld a, c - ld [TrainerClass], a + ld [wTrainerClass], a ret MovePlayerPicRight: ; 88258 @@ -73,7 +73,7 @@ ShowPlayerNamingChoices: ; 88297 INCLUDE "data/player_names.asm" GetPlayerNameArray: ; 88318 This Function is never called - ld hl, PlayerName + ld hl, wPlayerName ld de, MalePlayerNameArray ld a, [wPlayerGender] bit 0, a @@ -156,7 +156,7 @@ HOF_LoadTrainerFrontpic: ; 88840 .GotClass: ld a, e - ld [TrainerClass], a + ld [wTrainerClass], a ld de, ChrisPic ld a, [wPlayerGender] bit 0, a @@ -184,7 +184,7 @@ DrawIntroPlayerPic: ; 88874 ld e, KRIS .GotClass: ld a, e - ld [TrainerClass], a + ld [wTrainerClass], a ; Load pic ld de, ChrisPic |