mirror of
https://github.com/thornAvery/kep-hack.git
synced 2026-02-22 07:02:17 +13:00
Move all code out of home.asm into home/
This results in 64 home/*.asm files, comparable to pokecrystal's 57.
This commit is contained in:
parent
51ac538c25
commit
bbf2f51a02
35 changed files with 1754 additions and 1758 deletions
41
home/reload_tiles.asm
Normal file
41
home/reload_tiles.asm
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
; reloads text box tile patterns, current map view, and tileset tile patterns
|
||||
ReloadMapData::
|
||||
ldh a, [hLoadedROMBank]
|
||||
push af
|
||||
ld a, [wCurMap]
|
||||
call SwitchToMapRomBank
|
||||
call DisableLCD
|
||||
call LoadTextBoxTilePatterns
|
||||
call LoadCurrentMapView
|
||||
call LoadTilesetTilePatternData
|
||||
call EnableLCD
|
||||
pop af
|
||||
ldh [hLoadedROMBank], a
|
||||
ld [MBC1RomBank], a
|
||||
ret
|
||||
|
||||
; reloads tileset tile patterns
|
||||
ReloadTilesetTilePatterns::
|
||||
ldh a, [hLoadedROMBank]
|
||||
push af
|
||||
ld a, [wCurMap]
|
||||
call SwitchToMapRomBank
|
||||
call DisableLCD
|
||||
call LoadTilesetTilePatternData
|
||||
call EnableLCD
|
||||
pop af
|
||||
ldh [hLoadedROMBank], a
|
||||
ld [MBC1RomBank], a
|
||||
ret
|
||||
|
||||
; shows the town map and lets the player choose a destination to fly to
|
||||
ChooseFlyDestination::
|
||||
ld hl, wd72e
|
||||
res 4, [hl]
|
||||
farjp LoadTownMap_Fly
|
||||
|
||||
; causes the text box to close without waiting for a button press after displaying text
|
||||
DisableWaitingAfterTextDisplay::
|
||||
ld a, $01
|
||||
ld [wDoNotWaitForButtonPressAfterDisplayingText], a
|
||||
ret
|
||||
Loading…
Add table
Add a link
Reference in a new issue