From 68c51917982cbb2273c5da9f3c9cc964adeaf6ee Mon Sep 17 00:00:00 2001 From: Gaerzi Date: Fri, 20 May 2016 02:18:48 +0200 Subject: [PATCH] Add GOG path for SVE Since GOG.com is finally offering this game. --- src/win32/i_system.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/win32/i_system.cpp b/src/win32/i_system.cpp index 8590bface..5ada51b69 100644 --- a/src/win32/i_system.cpp +++ b/src/win32/i_system.cpp @@ -1608,6 +1608,13 @@ TArray I_GetGogPaths() result.Push(path + "/Plutonia"); } + // Look for Strife: Veteran Edition + gamepath = gogregistrypath + "\\1432899949"; + if (QueryPathKey(HKEY_LOCAL_MACHINE, gamepath.GetChars(), "Path", path)) + { + result.Push(path); // directly in install folder + } + return result; }