diff options
Diffstat (limited to 'home/video.asm')
-rw-r--r-- | home/video.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/video.asm b/home/video.asm index a9592558..12f7ee04 100644 --- a/home/video.asm +++ b/home/video.asm @@ -1,6 +1,6 @@ UpdateBGMapBuffer:: ; Copy [hBGMapTileCount] 16x8 tiles from wBGMapBuffer -; to bg map addresses in wBGMapBufferPtrs. +; to bg map addresses in wBGMapBufferPointers. ; [hBGMapTileCount] must be even since this is done in pairs. @@ -10,9 +10,9 @@ UpdateBGMapBuffer:: and a ret z -; Relocate the stack pointer to wBGMapBufferPtrs +; Relocate the stack pointer to wBGMapBufferPointers ld [hSPBuffer], sp - ld hl, wBGMapBufferPtrs + ld hl, wBGMapBufferPointers ld sp, hl ; We can now pop the addresses of affected spots on the BG Map |