summaryrefslogtreecommitdiff
path: root/home/tilemap.asm
diff options
context:
space:
mode:
authorsurskitty <surskitty@gmail.com>2018-02-03 22:18:56 -0500
committersurskitty <surskitty@gmail.com>2018-02-03 22:18:56 -0500
commite668b6cf3a7760303edd181baa69901a94a7d653 (patch)
treeb9de2e272aceb5ca4d24830a64ee4fd87e9fb40e /home/tilemap.asm
parent2edf131b056c6d2b1ec9eb48b97fba31b0f953c7 (diff)
parentb35eb72290b964b98844afbe741bb7ede34b9ef3 (diff)
Merge branch 'master' of github.com:pret/pokecrystal
Diffstat (limited to 'home/tilemap.asm')
-rw-r--r--home/tilemap.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/home/tilemap.asm b/home/tilemap.asm
index 9e15ed85b..4bbd16102 100644
--- a/home/tilemap.asm
+++ b/home/tilemap.asm
@@ -117,7 +117,7 @@ PlaceVerticalMenuItems:: ; 1c89
inc hl
ld d, [hl]
call GetMenuTextStartCoord
- call Coord2Tile ; hl now contains the TileMap address where we will start printing text.
+ call Coord2Tile ; hl now contains the tilemap address where we will start printing text.
inc de
ld a, [de] ; Number of items
inc de
@@ -207,7 +207,7 @@ MenuBoxCoord2Tile:: ; 1cfd
Coord2Tile:: ; 1d05
-; Return the address of TileMap(c, b) in hl.
+; Return the address of wTileMap(c, b) in hl.
xor a
ld h, a
ld l, b
@@ -235,7 +235,7 @@ MenuBoxCoord2Attr:: ; 1d19
ld b, a
Coord2Attr:: ; 1d21
-; Return the address of AttrMap(c, b) in hl.
+; Return the address of wAttrMap(c, b) in hl.
xor a
ld h, a
ld l, b
@@ -251,7 +251,7 @@ Coord2Attr:: ; 1d21
xor a
ld b, a
add hl, bc
- bccoord 0, 0, AttrMap
+ bccoord 0, 0, wAttrMap
add hl, bc
ret
; 1d35