Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
- move posix I_GetGogPaths() stub to program-specific code for use later
  • Loading branch information
madame-rachelle committed Nov 24, 2022
1 parent 8db4c5e commit f7f6711
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/common/platform/posix/i_system_posix.cpp
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions src/posix/i_steam.cpp
Expand Up @@ -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>();
}

0 comments on commit f7f6711

Please sign in to comment.