From db36bafe6e73bed4b659d5d488896ad345459971 Mon Sep 17 00:00:00 2001 From: tomas7770 <77364520+tomas7770@users.noreply.github.com> Date: Mon, 10 Jun 2024 01:32:56 +0000 Subject: [PATCH] add doomu.wad alias for Ultimate Doom (#1736) --- src/d_iwad.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/d_iwad.c b/src/d_iwad.c index 297f2191..37eb125d 100644 --- a/src/d_iwad.c +++ b/src/d_iwad.c @@ -35,6 +35,8 @@ static const iwad_t iwads[] = { {"doom.wad", doom, indetermined, "DOOM" }, {"doom.wad", doom, registered, "DOOM Registered" }, {"doom.wad", doom, retail, "The Ultimate DOOM" }, + // "doomu.wad" alias to allow retail wad to coexist with registered in the same folder + {"doomu.wad", doom, retail, "The Ultimate DOOM" }, {"doom1.wad", doom, shareware, "DOOM Shareware" }, {"doom2f.wad", doom2, commercial, "DOOM II: L'Enfer sur Terre" }, {"freedoom2.wad", doom2, commercial, "Freedoom: Phase 2" },