- Fix uncommitted change missed from 7fa5df934b.

This commit is contained in:
Mitchell Richters 2023-09-29 12:46:58 +10:00
parent 1fa628b47e
commit eeb9f48436

View file

@ -97,8 +97,6 @@ CVAR(Bool, r_ticstability, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
EXTERN_CVAR(Bool, cl_capfps)
CVAR(Bool, cl_resumesavegame, true, CVAR_ARCHIVE)
static ticcmd_t playercmds[MAXPLAYERS];
static uint64_t stabilityticduration = 0;
static uint64_t stabilitystarttime = 0;
static double inputScale;
@ -301,6 +299,9 @@ static void GameTicker()
// get commands, check consistancy, and build new consistancy check
int buf = (gametic / ticdup) % BACKUPTICS;
// array to hold all cmds for this tic.
ticcmd_t playercmds[MAXPLAYERS];
for (i = 0; i < MAXPLAYERS; i++)
{
if (playeringame[i])