mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 06:20:56 +00:00
- Fix uncommitted change missed from 7fa5df934b
.
This commit is contained in:
parent
1fa628b47e
commit
eeb9f48436
1 changed files with 3 additions and 2 deletions
|
@ -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])
|
||||
|
|
Loading…
Reference in a new issue