diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index 5458be1..9cebf4b 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -949,11 +949,14 @@ int hos_launch(ini_sec_t *cfg) { EHPRINTFARGS("Failed to apply '%s'!", unappliedPatch); - gfx_puts("\nPress POWER to continue.\nPress VOL to go to the menu.\n"); - display_backlight_brightness(h_cfg.backlight, 1000); + bool emmc_patch_failed = !strcmp(unappliedPatch, "emummc"); + if (!emmc_patch_failed) + { + gfx_puts("\nPress POWER to continue.\nPress VOL to go to the menu.\n"); + display_backlight_brightness(h_cfg.backlight, 1000); + } - u32 btn = btn_wait(); - if (!(btn & BTN_POWER)) + if (emmc_patch_failed || !(btn_wait() & BTN_POWER)) { _free_launch_components(&ctxt); goto error; // MUST stop here, because if user requests 'nogc' but it's not applied, their GC controller gets updated!