From 74fdb6dbcba76831082858762ef4bdc24fd396ee Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 9 Jan 2020 17:35:38 +0100 Subject: [PATCH] - fixed menu for DN3D 1.3 --- source/common/gamecontrol.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/source/common/gamecontrol.cpp b/source/common/gamecontrol.cpp index 211c8d3ea..489b2dcc5 100644 --- a/source/common/gamecontrol.cpp +++ b/source/common/gamecontrol.cpp @@ -380,17 +380,15 @@ int GameMain() // //========================================================================== -#define LOCALIZED_STRING(s) "$" s - void SetDefaultStrings() { - if ((g_gameType & GAMEFLAG_DUKE) && (g_gameType & GAMEFLAG_SHAREWARE)) + if ((g_gameType & GAMEFLAG_DUKE) && fileSystem.FindFile("E4L1.MAP") < 0) { - // Shareware does not define episodes + // Pre-Atomic releases do not define this. gVolumeNames[0] = "$L.A. Meltdown"; gVolumeNames[1] = "$Lunar Apocalypse"; gVolumeNames[2] = "$Shrapnel City"; - gVolumeNames[3] = "$The Birth"; + if (g_gameType & GAMEFLAG_SHAREWARE) gVolumeNames[3] = "$The Birth"; gSkillNames[0] = "$Piece of Cake"; gSkillNames[1] = "$Let's Rock"; gSkillNames[2] = "$Come get Some";