diff options
author | yenatch <yenatch@gmail.com> | 2018-02-03 17:15:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-03 17:15:20 -0500 |
commit | b35eb72290b964b98844afbe741bb7ede34b9ef3 (patch) | |
tree | 2cf2652bc9c3e69ae5f7b2a2632c02a12498615f /engine/diploma.asm | |
parent | 7547ad839cf1c8141b931d08ef16a894e7db68c9 (diff) | |
parent | 32ade4ac9bf113d630d904aab51f2c49c91bf8c2 (diff) |
Merge pull request #480 from luckytyphlosion/master
[Ready to merge] Prefix wram labels with w.
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 |