Remove "message" from scripts

It's already almost completely unused, only used for 3dsx shortcuts, and basically always used for exactly this so better to just put it in UU since then it can be translated
This commit is contained in:
Pk11
2022-03-18 07:30:09 -05:00
committed by Dark98
parent 65d8ae7043
commit 1ed2403a11
4 changed files with 35 additions and 49 deletions
+3 -3
View File
@@ -45,11 +45,11 @@ enum ScriptState {
namespace ScriptUtils {
bool matchPattern(const std::string &pattern, const std::string &tested);
Result removeFile(const std::string &file, const std::string &message, bool isARG = false);
void bootTitle(const std::string &TitleID, bool isNAND, const std::string &message, bool isARG = false);
Result removeFile(const std::string &file, bool isARG = false);
void bootTitle(const std::string &TitleID, bool isNAND, bool isARG = false);
Result prompt(const std::string &message);
Result copyFile(const std::string &source, const std::string &destination, const std::string &message, bool isARG = false);
Result renameFile(const std::string &oldName, const std::string &newName, const std::string &message, bool isARG = false);
Result renameFile(const std::string &oldName, const std::string &newName, bool isARG = false);
Result downloadRelease(const std::string &repo, const std::string &file, const std::string &output, bool includePrereleases, const std::string &message, bool isARG = false);
Result downloadFile(const std::string &file, const std::string &output, const std::string &message, bool isARG = false);
void installFile(const std::string &file, bool updatingSelf, const std::string &message, bool isARG = false);