X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=protocol.c;h=5f1d5e4edc7e9c94c01d79e10318bb37c11e86ce;hb=04ebd98618c773b10ada031f18b99f11020b559f;hp=b4c5ecbb36b036ef26519bb28f950f3ccf5c00f0;hpb=7302f77677d2795bd53eeb06392a410783a6aa79;p=xonotic%2Fdarkplaces.git diff --git a/protocol.c b/protocol.c index b4c5ecbb..5f1d5e4e 100644 --- a/protocol.c +++ b/protocol.c @@ -305,14 +305,12 @@ static void EntityFrameCSQC_LostAllFrames(client_t *client) void EntityFrameCSQC_LostFrame(client_t *client, int framenum) { // marks a frame as lost - int i, j, n; + int i, j; qboolean valid; int ringfirst, ringlast; static int recoversendflags[MAX_EDICTS]; csqcentityframedb_t *d; - n = client->csqcnumedicts; - // is our frame out of history? ringfirst = client->csqcentityframehistory_next; // oldest entry ringlast = (ringfirst + NUM_CSQCENTITYDB_FRAMES - 1) % NUM_CSQCENTITYDB_FRAMES; // most recently added entry @@ -2036,7 +2034,7 @@ static void EntityFrame5_ExpandEdicts(entityframe5_database_t *d, int newmax) static int EntityState5_Priority(entityframe5_database_t *d, int stateindex) { int limit, priority; - entity_state_t *s; + entity_state_t *s = NULL; // hush compiler warning by initializing this // if it is the player, update urgently if (stateindex == d->viewentnum) return ENTITYFRAME5_PRIORITYLEVELS - 1;