mirror of
https://github.com/ZDoom/Raze.git
synced 2025-02-17 01:01:09 +00:00
- move posix I_GetGogPaths() stub to program specific code
This commit is contained in:
parent
d43ebd22ae
commit
b4e19ec6a0
2 changed files with 6 additions and 6 deletions
|
@ -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
|
||||
|
|
|
@ -234,3 +234,9 @@ TArray<FString> I_GetSteamPath()
|
|||
return result;
|
||||
}
|
||||
|
||||
TArray<FString> I_GetGogPaths()
|
||||
{
|
||||
// GOG's Doom games are Windows only at the moment
|
||||
return TArray<FString>();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue