extend IPC functionalities (#3545)

* extend IPC

* clang

* clang
This commit is contained in:
Fire Cube
2025-09-09 23:57:42 +02:00
committed by GitHub
parent e885d52ad0
commit c05695fde5
2 changed files with 27 additions and 9 deletions

View File

@@ -123,7 +123,6 @@ std::string convertValueToHex(const std::string type, const std::string valueStr
void ApplyPendingPatches();
void OnGameLoaded() {
if (!patchFile.empty()) {
std::filesystem::path patchDir = Common::FS::GetUserPath(Common::FS::PathType::PatchesDir);
@@ -201,16 +200,11 @@ void OnGameLoaded() {
}
}
}
ApplyPendingPatches();
return;
} else {
LOG_ERROR(Loader, "couldnt patch parse xml : {}", result.description());
}
ApplyPendingPatches();
return;
}
ApplyPendingPatches();
#ifdef ENABLE_QT_GUI
// We use the QT headers for the xml and json parsing, this define is only true on QT builds