mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-22 18:06:40 +00:00
hos: Allow booting when kip1 patches failed
This can lead to a hanged boot if kip was corrupted or it can lead to unforeseen results if emummc or nogc patches fail and user chooses to continue.
This commit is contained in:
parent
0692e4de8d
commit
0a44a31f2c
1 changed files with 9 additions and 2 deletions
|
@ -857,8 +857,15 @@ int hos_launch(ini_sec_t *cfg)
|
||||||
{
|
{
|
||||||
EHPRINTFARGS("Failed to apply '%s'!", unappliedPatch);
|
EHPRINTFARGS("Failed to apply '%s'!", unappliedPatch);
|
||||||
|
|
||||||
_free_launch_components(&ctxt);
|
gfx_puts("\nPress POWER to continue.\nPress VOL to go to the menu.\n");
|
||||||
goto error; // MUST stop here, because if user requests 'nogc' but it's not applied, their GC controller gets updated!
|
display_backlight_brightness(h_cfg.backlight, 1000);
|
||||||
|
|
||||||
|
u32 btn = btn_wait();
|
||||||
|
if (!(btn & 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!
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Rebuild and encrypt package2.
|
// Rebuild and encrypt package2.
|
||||||
|
|
Loading…
Reference in a new issue