From 86f2d685d511e7966e16c93420c097b6290fc965 Mon Sep 17 00:00:00 2001 From: Huntereb Date: Sat, 16 Nov 2019 12:42:55 -0500 Subject: [PATCH] Make it obvious that signature patches work on older HOS versions --- source/sigInstall.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sigInstall.cpp b/source/sigInstall.cpp index aa24b72..febc866 100755 --- a/source/sigInstall.cpp +++ b/source/sigInstall.cpp @@ -17,7 +17,7 @@ namespace sig { std::string versionText = ""; std::string installButtonText = "Install"; if (patchesVersion != "") { - versionText = "\n\nYou currently have signature patches installed for HOS version " + patchesVersion + "."; + versionText = "\n\nYou currently have signature patches installed for up to HOS version " + patchesVersion + "."; installButtonText = "Update"; } int ourResult = inst::ui::mainApp->CreateShowDialog("Install signature patches?", "Signature patches are required for installing and playing NSP contents." + versionText, {installButtonText, "Uninstall", "Cancel"}, true); @@ -37,7 +37,7 @@ namespace sig { if (didExtract) { patchesVersion = inst::util::readTextFromFile("sdmc:/atmosphere/exefs_patches/es_patches/patches.txt"); versionText = ""; - if (patchesVersion != "") versionText = "Your signature patches have been updated for HOS version " + patchesVersion + "! "; + if (patchesVersion != "") versionText = "Your signature patches have been updated for up to HOS version " + patchesVersion + "! "; if (inst::ui::mainApp->CreateShowDialog("Install complete!", versionText + "\n\nRestart your console to apply!", {"Restart", "I'll do it later"}, false) == 0) bpcRebootSystem(); } else {