Whoops, forgot about the autoboot ones.

This commit is contained in:
StackZ
2020-03-09 16:28:56 +01:00
parent becb99cdd3
commit 6c26f2ae05
2 changed files with 5 additions and 1 deletions
+2
View File
@@ -745,6 +745,7 @@ void UniStore::StoreSelectionLogic(u32 hDown, u32 hHeld, touchPosition touch) {
if (Msg::promptMsg(Lang::get("DISABLE_AUTOBOOT"))) {
Config::autoboot = 0;
Config::AutobootFile = "";
changesMade = true;
}
} else {
if (dirContents[Selection].isDirectory) {
@@ -753,6 +754,7 @@ void UniStore::StoreSelectionLogic(u32 hDown, u32 hHeld, touchPosition touch) {
if (Msg::promptMsg(Lang::get("AUTOBOOT_STORE"))) {
Config::AutobootFile = Config::StorePath + dirContents[Selection].name;
Config::autoboot = 1;
changesMade = true;
}
}
}