summaryrefslogtreecommitdiff
path: root/home/reload_tiles.asm
diff options
context:
space:
mode:
Diffstat (limited to 'home/reload_tiles.asm')
-rw-r--r--home/reload_tiles.asm12
1 files changed, 2 insertions, 10 deletions
diff --git a/home/reload_tiles.asm b/home/reload_tiles.asm
index 6228395c..b596263a 100644
--- a/home/reload_tiles.asm
+++ b/home/reload_tiles.asm
@@ -10,8 +10,7 @@ ReloadMapData::
call LoadTilesetTilePatternData
call EnableLCD
pop af
- ldh [hLoadedROMBank], a
- ld [MBC1RomBank], a
+ call BankswitchCommon
ret
; reloads tileset tile patterns
@@ -24,8 +23,7 @@ ReloadTilesetTilePatterns::
call LoadTilesetTilePatternData
call EnableLCD
pop af
- ldh [hLoadedROMBank], a
- ld [MBC1RomBank], a
+ call BankswitchCommon
ret
; shows the town map and lets the player choose a destination to fly to
@@ -33,9 +31,3 @@ 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