Null out the messages Sal added while trying to fix the thing

This commit is contained in:
toaster 2020-09-22 13:21:24 +01:00
parent e053fd249b
commit 2e922a3673

View file

@ -5484,18 +5484,6 @@ static void SV_Maketic(void)
// Copy the input from the previous tic // Copy the input from the previous tic
*ticcmd = *prevticcmd; *ticcmd = *prevticcmd;
ticcmd->flags &= ~TICCMD_RECEIVED; ticcmd->flags &= ~TICCMD_RECEIVED;
#if 1
CONS_Printf(
"[PLAYER %d] move: %d, turn: %d, buttons: %d, latency: %d, flags: %d\n",
i,
ticcmd->forwardmove,
ticcmd->turning,
ticcmd->buttons,
ticcmd->latency,
ticcmd->flags
);
#endif
} }
} }
} }