diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-07-16 08:53:12 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-07-16 08:53:12 -0700 |
commit | 504e04e292a309ca6e9a12c0c5e3fbd8bd7bab13 (patch) | |
tree | 4ab55ece782a543ec98ec9125eab7facee7f48a8 | |
parent | eabce462d27b9dda3ce0f73dff69ebee54d2898d (diff) |
Use sHighScores label
-rw-r--r-- | engine/high_scores_screen.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/high_scores_screen.asm b/engine/high_scores_screen.asm index 1aa3bb2..3d867c6 100644 --- a/engine/high_scores_screen.asm +++ b/engine/high_scores_screen.asm @@ -356,7 +356,7 @@ Func_ccb6: ; 0xccb6 ld de, wBlueHighScore5Id + $3
call Func_d361
ld hl, wRedHighScore1Points
- ld de, $a000
+ ld de, sHighScores
ld bc, $0082
call SaveData
ret
@@ -523,7 +523,7 @@ Func_cdce: ; 0xcdce ld de, wBlueHighScore5Id + $3
call Func_d361
ld hl, wRedHighScore1Points
- ld de, $a000
+ ld de, sHighScores
ld bc, $0082
call SaveData
and a
@@ -1016,7 +1016,7 @@ Func_d1d2: ; 0xd1d2 ld hl, wScreenState
inc [hl]
ld hl, wRedHighScore1Points
- ld de, $a000
+ ld de, sHighScores
ld bc, $0082
call SaveData
ret
|