mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Fix an uninitialized variable found by valgrind.
This commit is contained in:
parent
799a0ae018
commit
97968422f8
1 changed files with 1 additions and 1 deletions
|
@ -392,7 +392,7 @@ CL_LinkPlayers (void)
|
|||
player_state_t exact;
|
||||
player_state_t *state;
|
||||
qboolean clientplayer;
|
||||
vec3_t org, ang;
|
||||
vec3_t org, ang = {0, 0, 0};
|
||||
|
||||
playertime = realtime - cls.latency + 0.02;
|
||||
if (playertime > realtime)
|
||||
|
|
Loading…
Reference in a new issue