Fixed compilation on non-Windows OSes

This commit is contained in:
alexey.lysiuk 2015-08-29 14:55:10 +03:00
parent 4d19f6f91b
commit 677dc8893e
2 changed files with 8 additions and 0 deletions

View file

@ -758,3 +758,9 @@ unsigned int I_MakeRNGSeed()
}
return seed;
}
TArray<FString> I_GetGogPaths()
{
// GOG's Doom games are Windows only at the moment
return TArray<FString>();
}

View file

@ -124,6 +124,8 @@ int I_PickIWad (WadStuff *wads, int numwads, bool queryiwad, int defaultiwad);
// directories for IWADs if the user purchased any through Steam.
TArray<FString> I_GetSteamPath();
TArray<FString> I_GetGogPaths();
// The ini could not be saved at exit
bool I_WriteIniFailed ();