- move posix I_GetGogPaths() stub to program specific code

This commit is contained in:
Rachael Alexanderson 2022-11-24 17:46:33 -05:00
parent d43ebd22ae
commit b4e19ec6a0
2 changed files with 6 additions and 6 deletions

View file

@ -44,12 +44,6 @@ bool I_WriteIniFailed(const char * filename)
return false; // return true to retry
}
TArray<FString> I_GetGogPaths()
{
// GOG's Doom games are Windows only at the moment
return TArray<FString>();
}
TArray<FString> I_GetBethesdaPath()
{
// Bethesda.net Launcher is Windows only at the moment

View file

@ -234,3 +234,9 @@ TArray<FString> I_GetSteamPath()
return result;
}
TArray<FString> I_GetGogPaths()
{
// GOG's Doom games are Windows only at the moment
return TArray<FString>();
}