commit f88db8003e39b3e1ec8bf75e6827f6c26ed4204b
Author: buvk <jon.friesen@gmail.com>
AuthorDate: Tue Aug 23 00:48:39 2022 -0700
Commit: GitHub <noreply@github.com>
CommitDate: Tue Aug 23 09:48:39 2022 +0200
added new Steam Final Doom IWAD path (#1495)
---
src/d_iwad.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/src/d_iwad.c b/src/d_iwad.c
index e6e5ffe3..5b6db201 100644
--- a/src/d_iwad.c
+++ b/src/d_iwad.c
@@ -262,6 +262,7 @@ static registry_value_t steam_install_location =
static char *steam_install_subdirs[] =
{
"steamapps\\common\\doom 2\\base",
+ "steamapps\\common\\doom 2\\finaldoombase",
"steamapps\\common\\final doom\\base",
"steamapps\\common\\ultimate doom\\base",
"steamapps\\common\\heretic shadow of the serpent riders\\base",
@@ -710,6 +711,7 @@ static void AddSteamDirs(void)
steampath = M_StringJoin(homedir, "/.steam/root/steamapps/common", NULL);
AddIWADPath(steampath, "/Doom 2/base");
+ AddIWADPath(steampath, "/Doom 2/finaldoombase");
AddIWADPath(steampath, "/Master Levels of Doom/doom2");
AddIWADPath(steampath, "/Ultimate Doom/base");
AddIWADPath(steampath, "/Final Doom/base");