diff --git a/source/ui/mainPage.cpp b/source/ui/mainPage.cpp index 3c2c1939..ad22d2ae 100755 --- a/source/ui/mainPage.cpp +++ b/source/ui/mainPage.cpp @@ -90,7 +90,8 @@ namespace inst::ui this->optionMenu->AddItem(this->installMenuItem); this->optionMenu->AddItem(this->netInstallMenuItem); this->optionMenu->AddItem(this->usbInstallMenuItem); - //this->optionMenu->AddItem(this->sigPatchesMenuItem); + if (inst::config::sigPatchesUrl !=("NULL")) + this->optionMenu->AddItem(this->sigPatchesMenuItem); this->optionMenu->AddItem(this->settingsMenuItem); this->optionMenu->AddItem(this->exitMenuItem); this->Add(this->optionMenu); @@ -170,13 +171,13 @@ namespace inst::ui case 2: MainPage::usbInstallMenuItem_Click(); break; - // case 3: - // MainPage::sigPatchesMenuItem_Click(); - // break; case 3: - MainPage::settingsMenuItem_Click(); + MainPage::sigPatchesMenuItem_Click(); break; case 4: + MainPage::settingsMenuItem_Click(); + break; + case 5: MainPage::exitMenuItem_Click(); break; default: diff --git a/source/util/config.cpp b/source/util/config.cpp index 9b119f52..65509070 100755 --- a/source/util/config.cpp +++ b/source/util/config.cpp @@ -56,7 +56,7 @@ namespace inst::config { // If loading values from the config fails, we just load the defaults and overwrite the old config gAuthKey = {0x41, 0x49, 0x7a, 0x61, 0x53, 0x79, 0x42, 0x4d, 0x71, 0x76, 0x34, 0x64, 0x58, 0x6e, 0x54, 0x4a, 0x4f, 0x47, 0x51, 0x74, 0x5a, 0x5a, 0x53, 0x33, 0x43, 0x42, 0x6a, 0x76, 0x66, 0x37, 0x34, 0x38, 0x51, 0x76, 0x78, 0x53, 0x7a, 0x46, 0x30}; - sigPatchesUrl = "https://github.com/Huntereb/Awoo-Installer/releases/download/SignaturePatches/patches.zip"; + sigPatchesUrl = "NULL"; languageSetting = 99; autoUpdate = false; deletePrompt = true; @@ -68,4 +68,4 @@ namespace inst::config setConfig(); } } -} // namespace inst::config \ No newline at end of file +} // namespace inst::config