diff options
Diffstat (limited to 'engine/menus')
| -rw-r--r-- | engine/menus/main_menu.asm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engine/menus/main_menu.asm b/engine/menus/main_menu.asm index c41a7d10..2875290e 100644 --- a/engine/menus/main_menu.asm +++ b/engine/menus/main_menu.asm @@ -10,10 +10,13 @@ MainMenu: predef TryLoadSaveFile -; FASTBOOT: if the save loaded cleanly (status 2), skip the menu and continue +; FASTBOOT: if the save loaded cleanly (status 2), show the SL0P splash then +; skip the menu and continue straight into the game ld a, [wSaveFileStatus] cp 2 - jp z, SpecialEnterMap + jr nz, .mainMenuLoop + farcall SlopSplash + jp SpecialEnterMap .mainMenuLoop ld c, 20 |
