From aec5f9b5c5839fdb0241b1b06076fa85fbfd4678 Mon Sep 17 00:00:00 2001 From: powerof3 <32599957+powerof3@users.noreply.github.com> Date: Sat, 16 Dec 2023 17:00:10 +0530 Subject: [PATCH] Fix logger directory so it isn't 1130 exclusive --- src/SKSE/Logger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SKSE/Logger.cpp b/src/SKSE/Logger.cpp index 206425b2e..c212b95d6 100644 --- a/src/SKSE/Logger.cpp +++ b/src/SKSE/Logger.cpp @@ -73,7 +73,7 @@ namespace SKSE std::filesystem::path path = knownPath.get(); path /= "My Games"sv; - path /= *REL::Relocation(RELOCATION_ID(508778, 502114)).get(); + path /= std::filesystem::exists("steam_api64.dll") ? "Skyrim Special Edition" : "Skyrim Special Edition GOG"; path /= "SKSE"sv; return path;