mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
Fixed compilation on non-Windows OSes
This commit is contained in:
parent
4d19f6f91b
commit
677dc8893e
2 changed files with 8 additions and 0 deletions
|
@ -758,3 +758,9 @@ unsigned int I_MakeRNGSeed()
|
||||||
}
|
}
|
||||||
return seed;
|
return seed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
TArray<FString> I_GetGogPaths()
|
||||||
|
{
|
||||||
|
// GOG's Doom games are Windows only at the moment
|
||||||
|
return TArray<FString>();
|
||||||
|
}
|
||||||
|
|
|
@ -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.
|
// directories for IWADs if the user purchased any through Steam.
|
||||||
TArray<FString> I_GetSteamPath();
|
TArray<FString> I_GetSteamPath();
|
||||||
|
|
||||||
|
TArray<FString> I_GetGogPaths();
|
||||||
|
|
||||||
// The ini could not be saved at exit
|
// The ini could not be saved at exit
|
||||||
bool I_WriteIniFailed ();
|
bool I_WriteIniFailed ();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue