From eeb9f48436f8dd33672da4e83e7a2acf6c0b2c27 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 29 Sep 2023 12:46:58 +1000 Subject: [PATCH] - Fix uncommitted change missed from 7fa5df934b78c5cc682c03b78091dfbc0a6b2c04. --- source/core/mainloop.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/core/mainloop.cpp b/source/core/mainloop.cpp index d77cb490f..4328eb8ab 100644 --- a/source/core/mainloop.cpp +++ b/source/core/mainloop.cpp @@ -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])