mirror of
https://github.com/CTCaer/hekate
synced 2024-11-04 19:06:35 +00:00
Merge pull request #500 from AuroraWright/master
hos: Prevent booting emummc with failed emummc patching
This commit is contained in:
commit
9da0e0358b
1 changed files with 7 additions and 4 deletions
|
@ -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!
|
||||
|
|
Loading…
Reference in a new issue