diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-07-04 09:19:34 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-07-04 09:55:16 -0700 |
commit | f8b61dfb144a6fc3671802139a73bd6e86d4b49c (patch) | |
tree | d998533f5dba5459dacb34891ca87918049ca17c /engine/high_scores_screen.asm | |
parent | da545c36093c11ce095038b2ecbee00e8396bc1c (diff) |
More wram.asm labeling and cleanup
Diffstat (limited to 'engine/high_scores_screen.asm')
-rwxr-xr-x | engine/high_scores_screen.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/high_scores_screen.asm b/engine/high_scores_screen.asm index a86209b..920fc9d 100755 --- a/engine/high_scores_screen.asm +++ b/engine/high_scores_screen.asm @@ -554,7 +554,7 @@ SendHighScores: ; 0xced1 ; Sends high scores, and plays the animation for sending the high scores.
ld hl, SendHighScoresAnimationData
ld de, wSendHighScoresAnimationFrameCounter
- call CopyHLToDE
+ call InitAnimation
ld bc, $4800
ld a, [wSendHighScoresAnimationFrame]
call LoadOAMData
@@ -587,7 +587,7 @@ SendHighScores: ; 0xced1 .asm_cf0e
ld hl, SendHighScoresAnimationData
- ld de, wSendHighScoresAnimationFrameCounter
+ ld de, wSendHighScoresAnimation
call UpdateAnimation
jr nc, .continueAttempts
ld bc, $4800
@@ -598,12 +598,12 @@ SendHighScores: ; 0xced1 call LoadOAMData
call CleanOAMBuffer
call Func_1ca1
- ld a, [wSendHighScoresAnimationFrameIndex]
+ ld a, [wSendHighScoresAnimationIndex]
cp $6
jr nz, .continueAttempts
ld hl, SendHighScoresAnimationData
ld de, wSendHighScoresAnimationFrameCounter
- call CopyHLToDE
+ call InitAnimation
.continueAttempts
pop bc
ld a, [wd8ea]
|