From 80cc12001f9533c03e3975ebfdd0cc6abdb21d64 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 8 Mar 2020 13:54:00 +0100 Subject: [PATCH] - a bit of cleanup. --- source/common/gamecontrol.cpp | 5 +++++ source/duke3d/src/savegame.cpp | 4 +--- source/rr/src/savegame.cpp | 4 +--- source/rr/src/screens.cpp | 1 - 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/source/common/gamecontrol.cpp b/source/common/gamecontrol.cpp index 44ce618e6..f815869e4 100644 --- a/source/common/gamecontrol.cpp +++ b/source/common/gamecontrol.cpp @@ -909,3 +909,8 @@ FString G_GetDemoPath() return path; } + +CCMD(printinterface) +{ + Printf("Current interface is %s\n", gi->Name()); +} diff --git a/source/duke3d/src/savegame.cpp b/source/duke3d/src/savegame.cpp index ba06b307b..aa22c42b2 100644 --- a/source/duke3d/src/savegame.cpp +++ b/source/duke3d/src/savegame.cpp @@ -467,9 +467,7 @@ int32_t G_LoadPlayer(FSaveGameNode *sv) engineLoadMHK(workbuffer); } - if (status == 2) - G_NewGame_EnterLevel(); - else if ((status = sv_loadsnapshot(*fil, 0, &h))) // read the rest... + if ((status = sv_loadsnapshot(*fil, 0, &h))) // read the rest... { // in theory, we could load into an initial dump first and trivially // recover if things go wrong... diff --git a/source/rr/src/savegame.cpp b/source/rr/src/savegame.cpp index 5834fb344..68b774b06 100644 --- a/source/rr/src/savegame.cpp +++ b/source/rr/src/savegame.cpp @@ -218,9 +218,7 @@ int32_t G_LoadPlayer(const char *path) engineLoadMHK(workbuffer); } - if (status == 2) - G_NewGame_EnterLevel(); - else if ((status = sv_loadsnapshot(*fil, 0, &h))) // read the rest... + if ((status = sv_loadsnapshot(*fil, 0, &h))) // read the rest... { // in theory, we could load into an initial dump first and trivially // recover if things go wrong... diff --git a/source/rr/src/screens.cpp b/source/rr/src/screens.cpp index 05cda2d86..e6d57b6e0 100644 --- a/source/rr/src/screens.cpp +++ b/source/rr/src/screens.cpp @@ -1097,7 +1097,6 @@ void G_DisplayLogo(void) Mus_Stop(); FX_StopAllSounds(); // JBF 20031228 - S_ClearSoundLocks(); // JBF 20031228 if (DEER) { if (!g_noLogo /* && (!g_netServer && ud.multimode < 2) */)