From aee30ec2ce09fca1bc1977a2a6870a4a51f179a0 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Wed, 2 Nov 2022 14:43:53 +0700 Subject: [PATCH] fix starting "new game" or "load game" when fast-forwarding a demo (#789) --- src/g_game.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index d873d614..d11055c9 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -1986,6 +1986,8 @@ static void G_DoLoadGame(void) byte saveg_complevel = 203; int tmp_compat, tmp_skill, tmp_epi, tmp_map; + I_SetFastdemoTimer(false); + // [crispy] loaded game must always be single player. // Needed for ability to use a further game loading, as well as // cheat codes and other single player only specifics. @@ -3080,6 +3082,7 @@ void G_ReloadDefaults(void) void G_DoNewGame (void) { + I_SetFastdemoTimer(false); G_ReloadDefaults(); // killough 3/1/98 netgame = false; // killough 3/29/98 deathmatch = false;