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.
This commit is contained in:
mid-kid
2020-02-13 18:30:13 +01:00
parent 34ceaac71d
commit 26b8bf003e
84 changed files with 630 additions and 630 deletions

View File

@@ -1,6 +1,6 @@
InitDisplayForHallOfFame:
call ClearBGPalettes
call ClearTileMap
call ClearTilemap
call ClearSprites
call DisableLCD
call LoadStandardFont
@@ -9,7 +9,7 @@ InitDisplayForHallOfFame:
ld bc, vBGMap1 - vBGMap0
ld a, " "
call ByteFill
hlcoord 0, 0, wAttrMap
hlcoord 0, 0, wAttrmap
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
xor a
call ByteFill
@@ -29,7 +29,7 @@ InitDisplayForHallOfFame:
InitDisplayForRedCredits:
call ClearBGPalettes
call ClearTileMap
call ClearTilemap
call ClearSprites
call DisableLCD
call LoadStandardFont
@@ -38,7 +38,7 @@ InitDisplayForRedCredits:
ld bc, vBGMap1 - vBGMap0
ld a, " "
call ByteFill
hlcoord 0, 0, wAttrMap
hlcoord 0, 0, wAttrmap
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
xor a
call ByteFill
@@ -65,7 +65,7 @@ ResetDisplayBetweenHallOfFameMons:
ld a, BANK(wDecompressScratch)
ldh [rSVBK], a
ld hl, wDecompressScratch
ld bc, wScratchAttrMap - wDecompressScratch
ld bc, wScratchAttrmap - wDecompressScratch
ld a, " "
call ByteFill
hlbgcoord 0, 0