diff options
author | mid-kid <esteve.varela@gmail.com> | 2020-02-13 18:30:13 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2020-02-13 18:31:10 +0100 |
commit | 26b8bf003e3523fee94c4c18447ea55f9eb1d429 (patch) | |
tree | 96515ae3efceb833cd71c93786150daa3348c71c /home/menu_window.asm | |
parent | 34ceaac71d32baace82f1e6de8fd4b252fb92a84 (diff) |
Standardize on lowercase Tilemap and Attrmap
We used to have a mixture of TileMap and and Tilemap, as well as the
similar AttrMap. Standardize on one.
Diffstat (limited to 'home/menu_window.asm')
-rw-r--r-- | home/menu_window.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/menu_window.asm b/home/menu_window.asm index b72677702..d66485041 100644 --- a/home/menu_window.asm +++ b/home/menu_window.asm @@ -194,7 +194,7 @@ MenuBoxCoord2Tile:: ld b, a Coord2Tile:: -; Return the address of wTileMap(c, b) in hl. +; Return the address of wTilemap(c, b) in hl. xor a ld h, a ld l, b @@ -221,7 +221,7 @@ MenuBoxCoord2Attr:: ld b, a Coord2Attr:: -; Return the address of wAttrMap(c, b) in hl. +; Return the address of wAttrmap(c, b) in hl. xor a ld h, a ld l, b @@ -237,6 +237,6 @@ Coord2Attr:: xor a ld b, a add hl, bc - bccoord 0, 0, wAttrMap + bccoord 0, 0, wAttrmap add hl, bc ret |