Added support for Heretic/Hexen vanilla WADs that come with the 2025 Kex port

This commit is contained in:
Yarn366 2025-09-19 01:42:21 -04:00 committed by Rachael Alexanderson
commit 2feae32535
2 changed files with 8 additions and 2 deletions

View file

@ -164,7 +164,10 @@ static struct SteamAppInfo
{"Ultimate Doom/rerelease/DOOM_Data/StreamingAssets", 2280},
{"Doom 2/rerelease/DOOM II_Data/StreamingAssets", 2300},
{"Doom 2/finaldoombase", 2300},
{"Master Levels of Doom/doom2", 9160}
{"Master Levels of Doom/doom2", 9160},
{"Heretic + Hexen/base/heretic", 3286930},
{"Heretic + Hexen/base/hexen", 3286930},
{"Heretic + Hexen/base/hexendk", 3286930}
};
TArray<FString> I_GetSteamPath()

View file

@ -308,7 +308,10 @@ TArray<FString> I_GetSteamPath()
"Ultimate Doom/rerelease", // 2024 KEX Port
"Doom 2/rerelease/DOOM II_Data/StreamingAssets",
"Doom 2/finaldoombase",
"Master Levels of Doom/doom2"
"Master Levels of Doom/doom2",
"Heretic + Hexen/base/heretic", // vanilla WAD included with the 2025 Kex port
"Heretic + Hexen/base/hexen", // vanilla WAD included with the 2025 Kex port
"Heretic + Hexen/base/hexendk" // vanilla WAD included with the 2025 Kex port
};
FString steamPath;