Fixed compilation on non-Windows OSes

This commit is contained in:
alexey.lysiuk 2015-08-29 14:55:10 +03:00
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>();
}