From a795e090dcd4e0377414c3f410d5b51fbfcd8cf4 Mon Sep 17 00:00:00 2001 From: nitec <35529761+cdozdil@users.noreply.github.com> Date: Mon, 4 Aug 2025 22:13:41 +0300 Subject: [PATCH] Add KCD2 'Win64MasterMasterSteamPGO' path for search --- OptiScaler/Util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OptiScaler/Util.cpp b/OptiScaler/Util.cpp index 9d7b6ad2..ef85b906 100644 --- a/OptiScaler/Util.cpp +++ b/OptiScaler/Util.cpp @@ -376,7 +376,7 @@ std::optional Util::FindFilePath(const std::filesystem::p // 3) Unreal-Engine/WinGDK fallback: check for Win64 or WinGDK in parent std::filesystem::path parent = startDir.parent_path().parent_path(); - for (const char* folder : { "Win64", "WinGDK" }) + for (const char* folder : { "Win64", "WinGDK", "Win64MasterMasterSteamPGO" }) { if (std::filesystem::exists(parent / folder) && std::filesystem::is_directory(parent / folder)) {