From f7f67114edf7caff61c7beda86d6a8365e410da4 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 24 Nov 2022 17:40:26 -0500 Subject: [PATCH] - move posix I_GetGogPaths() stub to program-specific code for use later --- src/common/platform/posix/i_system_posix.cpp | 6 ------ src/posix/i_steam.cpp | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/common/platform/posix/i_system_posix.cpp b/src/common/platform/posix/i_system_posix.cpp index bb381d551..786706600 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 b104fb9e8..15265a6e0 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(); +}