Add detection for the Final Doom WADs that were recently added to the Steam version of Doom II.

Also add detection for the Steam Unity versions of Doom and Doom II to posix/i_steam.cpp, which was apparently missed by whoever added it to the win32 version.
This commit is contained in:
Yarn366 2022-08-11 19:44:43 -04:00 committed by Christoph Oelckers
parent 1b43575580
commit 6489f5ebf0
2 changed files with 6 additions and 2 deletions

View file

@ -160,7 +160,10 @@ static struct SteamAppInfo
{"Hexen Deathkings of the Dark Citadel/base", 2370},
{"Ultimate Doom/base", 2280},
{"DOOM 3 BFG Edition/base/wads", 208200},
{"Strife", 317040}
{"Strife", 317040},
{"Ultimate Doom/rerelease/DOOM_Data/StreamingAssets", 2280},
{"Doom 2/rerelease/DOOM II_Data/StreamingAssets", 2300},
{"Doom 2/finaldoombase", 2300}
};
TArray<FString> I_GetSteamPath()

View file

@ -222,7 +222,8 @@ TArray<FString> I_GetSteamPath()
"DOOM 3 BFG Edition/base/wads",
"Strife",
"Ultimate Doom/rerelease/DOOM_Data/StreamingAssets",
"Doom 2/rerelease/DOOM II_Data/StreamingAssets"
"Doom 2/rerelease/DOOM II_Data/StreamingAssets",
"Doom 2/finaldoombase"
};
FString path;