Add DeferredStartTitle in P_Ticker

This commit is contained in:
Eidolon 2024-02-24 23:42:00 -06:00
parent da48e91754
commit 5ddab93579

View file

@ -12,6 +12,7 @@
/// \brief Archiving: SaveGame I/O, Thinker, Ticker
#include "doomstat.h"
#include "d_main.h"
#include "g_game.h"
#include "g_input.h"
#include "p_local.h"
@ -1252,5 +1253,10 @@ void P_Ticker(boolean run)
{
G_CopyTiccmd(&players[i].oldcmd, &players[i].cmd, 1);
}
if (D_IsDeferredStartTitle())
{
D_StartTitle();
}
// Z_CheckMemCleanup();
}