diff --git a/src/common/platform/posix/i_system_posix.cpp b/src/common/platform/posix/i_system_posix.cpp index bb381d55137..786706600aa 100644 --- a/src/common/platform/posix/i_system_posix.cpp +++ b/src/common/platform/posix/i_system_posix.cpp @@ -44,12 +44,6 @@ bool I_WriteIniFailed(const char * filename) return false; // return true to retry } -TArray I_GetGogPaths() -{ - // GOG's Doom games are Windows only at the moment - return TArray(); -} - TArray I_GetBethesdaPath() { // Bethesda.net Launcher is Windows only at the moment diff --git a/src/posix/i_steam.cpp b/src/posix/i_steam.cpp index b104fb9e80c..15265a6e02f 100644 --- a/src/posix/i_steam.cpp +++ b/src/posix/i_steam.cpp @@ -228,3 +228,9 @@ TArray I_GetSteamPath() return result; } + +TArray I_GetGogPaths() +{ + // GOG's Doom games are Windows only at the moment + return TArray(); +}