mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add DeferredStartTitle in P_Ticker
This commit is contained in:
parent
da48e91754
commit
5ddab93579
1 changed files with 6 additions and 0 deletions
|
|
@ -12,6 +12,7 @@
|
||||||
/// \brief Archiving: SaveGame I/O, Thinker, Ticker
|
/// \brief Archiving: SaveGame I/O, Thinker, Ticker
|
||||||
|
|
||||||
#include "doomstat.h"
|
#include "doomstat.h"
|
||||||
|
#include "d_main.h"
|
||||||
#include "g_game.h"
|
#include "g_game.h"
|
||||||
#include "g_input.h"
|
#include "g_input.h"
|
||||||
#include "p_local.h"
|
#include "p_local.h"
|
||||||
|
|
@ -1252,5 +1253,10 @@ void P_Ticker(boolean run)
|
||||||
{
|
{
|
||||||
G_CopyTiccmd(&players[i].oldcmd, &players[i].cmd, 1);
|
G_CopyTiccmd(&players[i].oldcmd, &players[i].cmd, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (D_IsDeferredStartTitle())
|
||||||
|
{
|
||||||
|
D_StartTitle();
|
||||||
|
}
|
||||||
// Z_CheckMemCleanup();
|
// Z_CheckMemCleanup();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue