diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-19 14:49:43 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-19 14:49:43 -0500 |
commit | 0c6338836d714f464bfcaa0c8c5b8c76e6f4958d (patch) | |
tree | 99c26ca80f95266c633427e30ba7e856ec500c92 /home/map.asm | |
parent | 52993d20efd5315c9d3e2e684a84456783717fc8 (diff) |
Resolve #471 (although link code still needs more cleanup, like its WRAM labels)
Diffstat (limited to 'home/map.asm')
-rw-r--r-- | home/map.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/map.asm b/home/map.asm index bb0718899..a66391896 100644 --- a/home/map.asm +++ b/home/map.asm @@ -1352,7 +1352,7 @@ UpdateBGMapRow:: ; 27d3 dec c jr nz, .loop ld a, SCREEN_WIDTH - ld [hFFDC], a + ld [hBGMapTileCount], a ret ; 27f8 @@ -1379,7 +1379,7 @@ UpdateBGMapColumn:: ; 27f8 dec c jr nz, .loop ld a, SCREEN_HEIGHT - ld [hFFDC], a + ld [hBGMapTileCount], a ret ; 2816 |