Add GOG path for SVE

Since GOG.com is finally offering this game.
This commit is contained in:
Gaerzi 2016-05-20 02:18:48 +02:00
parent 78055733c8
commit 68c5191798
1 changed files with 7 additions and 0 deletions

View File

@ -1608,6 +1608,13 @@ TArray<FString> I_GetGogPaths()
result.Push(path + "/Plutonia"); 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; return result;
} }