mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-19 16:11:23 +00:00
- move posix I_GetGogPaths() stub to program-specific code for use later
This commit is contained in:
parent
8db4c5ea71
commit
f7f67114ed
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
|
||||
|
|
|
@ -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>();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue