From b4e19ec6a0ec567b0f8ccaae66f4564ef15c50c7 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 24 Nov 2022 17:46:33 -0500 Subject: [PATCH] - move posix I_GetGogPaths() stub to program specific code --- source/common/platform/posix/i_system_posix.cpp | 6 ------ source/platform/posix/i_steam.cpp | 6 ++++++ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/source/common/platform/posix/i_system_posix.cpp b/source/common/platform/posix/i_system_posix.cpp index bb381d551..786706600 100644 --- a/source/common/platform/posix/i_system_posix.cpp +++ b/source/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/source/platform/posix/i_steam.cpp b/source/platform/posix/i_steam.cpp index 4136bdc49..94649ee5b 100644 --- a/source/platform/posix/i_steam.cpp +++ b/source/platform/posix/i_steam.cpp @@ -234,3 +234,9 @@ TArray I_GetSteamPath() return result; } +TArray I_GetGogPaths() +{ + // GOG's Doom games are Windows only at the moment + return TArray(); +} +