Fix self updating ncch app jump

This commit is contained in:
PabloMK7
2022-10-21 01:12:29 +02:00
parent c49379442d
commit d396944487
5 changed files with 29 additions and 13 deletions

View File

@ -738,10 +738,6 @@ void SetCurrentRomPath(const std::string& path) {
g_currentRomPath = path;
}
const std::string& GetCurrentRomPath() {
return g_currentRomPath;
}
bool StringReplace(std::string& haystack, const std::string& a, const std::string& b, bool swap) {
const auto& needle = swap ? b : a;
const auto& replacement = swap ? a : b;