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

@@ -26,12 +26,12 @@ Printer_CleanUpAfterSend:
ld [wPrinterOpcode], a
ret
Printer_PrepareTileMapForPrint:
Printer_PrepareTilemapForPrint:
push af
call Printer_StartTransmission
pop af
ld [wPrinterMargins], a
call Printer_CopyTileMapToBuffer
call Printer_CopyTilemapToBuffer
ret
Printer_ExitPrinter:
@@ -63,7 +63,7 @@ PrintDexEntry:
ln a, 1, 0
ld [wPrinterMargins], a
farcall PrintPage1
call ClearTileMap
call ClearTilemap
ld a, %11100100
call DmgToCgbBGPals
call DelayFrame
@@ -152,7 +152,7 @@ PrintPCBox:
ldh [hBGMapMode], a
call PrintPCBox_Page1
ln a, 1, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
call Printer_ResetRegistersAndStartDataSend
jr c, .cancel
@@ -163,7 +163,7 @@ PrintPCBox:
ldh [hBGMapMode], a
call PrintPCBox_Page2
ln a, 0, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
call Printer_ResetRegistersAndStartDataSend
jr c, .cancel
@@ -175,7 +175,7 @@ PrintPCBox:
ldh [hBGMapMode], a
call PrintPCBox_Page3
ln a, 0, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
call Printer_ResetRegistersAndStartDataSend
jr c, .cancel
@@ -187,7 +187,7 @@ PrintPCBox:
ldh [hBGMapMode], a
call PrintPCBox_Page4
ln a, 0, 3 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
call Printer_ResetRegistersAndStartDataSend
.cancel
pop af
@@ -227,11 +227,11 @@ PrintUnownStamp:
ld [hl], $4
xor a
ldh [hBGMapMode], a
call LoadTileMapToTempTileMap
call LoadTilemapToTempTilemap
farcall PlaceUnownPrinterFrontpic
ln a, 0, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call SafeLoadTempTileMapToTileMap
call Printer_PrepareTilemapForPrint
call SafeLoadTempTilemapToTilemap
call Printer_ResetJoypadRegisters
ld a, 18 / 2
ld [wPrinterQueueLength], a
@@ -259,7 +259,7 @@ PrintUnownStamp:
pop af
ldh [hVBlank], a
call Printer_CleanUpAfterSend
call SafeLoadTempTileMapToTileMap
call SafeLoadTempTilemapToTilemap
xor a
ldh [rIF], a
pop af
@@ -291,7 +291,7 @@ PrintMail:
ldh [hBGMapMode], a
ln a, 1, 3 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
ld hl, hVBlank
ld a, [hl]
push af
@@ -304,7 +304,7 @@ PrintMail:
pop af
ldh [hVBlank], a
call Printer_CleanUpAfterSend
call Printer_CopyBufferToTileMap
call Printer_CopyBufferToTilemap
xor a
ldh [rIF], a
@@ -333,7 +333,7 @@ PrintPartymon:
ldh [hBGMapMode], a
farcall PrintPartyMonPage1
ln a, 1, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
ld hl, hVBlank
ld a, [hl]
@@ -354,7 +354,7 @@ PrintPartymon:
ldh [hBGMapMode], a
farcall PrintPartyMonPage2
ln a, 0, 3 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
ld a, 18 / 2
ld [wPrinterQueueLength], a
@@ -365,7 +365,7 @@ PrintPartymon:
ldh [hVBlank], a
call Printer_CleanUpAfterSend
call Printer_CopyBufferToTileMap
call Printer_CopyBufferToTilemap
xor a
ldh [rIF], a
pop af
@@ -399,7 +399,7 @@ _PrintDiploma:
ld [hl], %0100
ln a, 1, 0 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call Printer_PrepareTilemapForPrint
call Printer_ResetJoypadRegisters
ld a, 18 / 2
@@ -410,15 +410,15 @@ _PrintDiploma:
ld c, 12
call DelayFrames
call LoadTileMapToTempTileMap
call LoadTilemapToTempTilemap
xor a
ldh [hBGMapMode], a
farcall PrintDiplomaPage2
ln a, 0, 3 ; to be loaded to wPrinterMargins
call Printer_PrepareTileMapForPrint
call SafeLoadTempTileMapToTileMap
call Printer_PrepareTilemapForPrint
call SafeLoadTempTilemapToTilemap
call Printer_ResetJoypadRegisters
ld a, 18 / 2
@@ -473,15 +473,15 @@ CheckCancelPrint:
scf
ret
Printer_CopyTileMapToBuffer:
Printer_CopyTilemapToBuffer:
hlcoord 0, 0
ld de, wPrinterTileMapBuffer
ld de, wPrinterTilemapBuffer
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
call CopyBytes
ret
Printer_CopyBufferToTileMap:
ld hl, wPrinterTileMapBuffer
Printer_CopyBufferToTilemap:
ld hl, wPrinterTilemapBuffer
decoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
call CopyBytes