mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
daybreak: Added a warning when resetting to factory settings
This commit is contained in:
parent
a7564cf303
commit
3afd9a737c
1 changed files with 11 additions and 3 deletions
|
@ -477,7 +477,7 @@ namespace dbk {
|
|||
}
|
||||
|
||||
if (R_FAILED(rc = splGetConfig(static_cast<SplConfigItem>(ExosphereEmummcType), &is_emummc))) {
|
||||
ChangeMenu(std::make_shared<ErrorMenu>("An error has occurred", "Failed to chech emuMMC status.", rc));
|
||||
ChangeMenu(std::make_shared<ErrorMenu>("An error has occurred", "Failed to check emuMMC status.", rc));
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -941,10 +941,18 @@ namespace dbk {
|
|||
break;
|
||||
}
|
||||
|
||||
std::shared_ptr<Menu> next_menu;
|
||||
|
||||
if (g_exfat_supported) {
|
||||
ChangeMenu(std::make_shared<ChooseExfatMenu>(g_current_menu));
|
||||
next_menu = std::make_shared<ChooseExfatMenu>(g_current_menu);
|
||||
} else {
|
||||
ChangeMenu(std::make_shared<WarningMenu>(g_current_menu, std::make_shared<InstallUpdateMenu>(g_current_menu), "Ready to begin update installation", "Are you sure you want to proceed?"));
|
||||
next_menu = std::make_shared<WarningMenu>(g_current_menu, std::make_shared<InstallUpdateMenu>(g_current_menu), "Ready to begin update installation", "Are you sure you want to proceed?");
|
||||
}
|
||||
|
||||
if (g_reset_to_factory) {
|
||||
ChangeMenu(std::make_shared<WarningMenu>(g_current_menu, next_menu, "Warning: Factory reset selected", "Saves and installed games will be permanently deleted."));
|
||||
} else {
|
||||
ChangeMenu(next_menu);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue