Fix an uninitialized variable found by valgrind.

This commit is contained in:
Bill Currie 2012-02-26 16:01:04 +09:00
parent 799a0ae018
commit 97968422f8

View file

@ -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)