Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Unity and D1+D2 IWAD search folders #1214

Merged
merged 2 commits into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions src/d_iwad.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,30 @@ static registry_value_t root_path_keys[] =
"PATH",
},

// [crispy] DOOM Unity port (not Chocolate Doom compatible)

{
HKEY_LOCAL_MACHINE,
SOFTWARE_KEY "\\GOG.com\\Games\\2015545325",
"PATH"
},

// [crispy] DOOM II Unity port (not Chocolate Doom compatible)

{
HKEY_LOCAL_MACHINE,
SOFTWARE_KEY "\\GOG.com\\Games\\1426071866",
"PATH"
},

// [crispy] DOOM + DOOM II (not Chocolate Doom compatible)

{
HKEY_LOCAL_MACHINE,
SOFTWARE_KEY "\\GOG.com\\Games\\1413291984",
"PATH"
},

// Strife: Veteran Edition

{
Expand Down Expand Up @@ -275,6 +299,12 @@ static char *steam_install_subdirs[] =

"steamapps\\common\\DOOM 3 BFG Edition\\base\\wads",

// [crispy] Doom 1 + Doom 2 (not Chocolate Doom compatible):

"steamapps\\common\\Doom 2\\rerelease\\DOOM II_Data\\StreamingAssets",
"steamapps\\common\\Ultimate Doom\\rerelease",
"steamapps\\common\\Ultimate Doom\\rerelease\\DOOM_Data\\StreamingAssets",

// From Strife: Veteran Edition:

"steamapps\\common\\Strife",
Expand Down
Loading