diff --git a/source/arm11/main.c b/source/arm11/main.c index ec8d5c4..04a5fbd 100644 --- a/source/arm11/main.c +++ b/source/arm11/main.c @@ -92,9 +92,9 @@ // show menu if bootmode is normal or HOME button is pressed show_menu = (!nextBootSlot && (bootmode == BootModeNormal)) || hidIsHomeButtonHeldRaw(); - // show splash if (bootmode != BootModeQuiet) + // show splash if cold boot and (bootmode != BootModeQuiet) bool splash_wait = false; - if(show_menu || (bootmode != BootModeQuiet)) + if(show_menu || (!nextBootSlot && (bootmode != BootModeQuiet))) { if (!gfx_initialized) GFX_init(true); gfx_initialized = true;