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/diploma.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
Diffstat (limited to 'engine/diploma.asm')
-rw-r--r-- | engine/diploma.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/diploma.asm b/engine/diploma.asm index ba45e4cd5..5d0482cc4 100644 --- a/engine/diploma.asm +++ b/engine/diploma.asm @@ -22,7 +22,7 @@ PlaceDiplomaOnScreen: ; 1dd709 ld de, .EmptyString hlcoord 15, 5 call PlaceString - ld de, PlayerName + ld de, wPlayerName hlcoord 9, 5 call PlaceString ld de, .Certification @@ -68,12 +68,12 @@ PrintDiplomaPage2: ; 1dd7ae hlcoord 3, 15 call PlaceString hlcoord 12, 15 - ld de, GameTimeHours + ld de, wGameTimeHours lb bc, 2, 4 call PrintNum ld [hl], $67 ; colon inc hl - ld de, GameTimeMinutes + ld de, wGameTimeMinutes lb bc, PRINTNUM_LEADINGZEROS | 1, 2 call PrintNum ret |