summaryrefslogtreecommitdiff
path: root/home/video.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/video.asm')
-rw-r--r--home/video.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/video.asm b/home/video.asm
index 15ea9b72b..96a449071 100644
--- a/home/video.asm
+++ b/home/video.asm
@@ -20,10 +20,10 @@ DMATransfer:: ; 15d8
UpdateBGMapBuffer:: ; 15e3
-; Copy [$ffdc] 16x8 tiles from BGMapBuffer
+; Copy [hFFDC] 16x8 tiles from BGMapBuffer
; to bg map addresses in BGMapBufferPtrs.
-; [$ffdc] must be even since this is done in pairs.
+; [hFFDC] must be even since this is done in pairs.
; Return carry on success.
@@ -76,11 +76,11 @@ rept 2
endr
; We've done 2 16x8 blocks
- ld a, [$ffdc]
+ ld a, [hFFDC]
rept 2
dec a
endr
- ld [$ffdc], a
+ ld [hFFDC], a
jr nz, .next