- move posix I_GetGogPaths() stub to program-specific code for use later

This commit is contained in:
Rachael Alexanderson 2022-11-24 17:40:26 -05:00
parent 8db4c5ea71
commit f7f67114ed
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

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