From 797a3098f13c4bf2fbe18a88b890c41b11388ad9 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 5 Jun 2005 10:41:03 +0000 Subject: [PATCH] fixed the 'floating models' bug (EntityFrame5_WriteFrame was inconsistent with its maxedicts) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5399 d7cf8633-e32d-0410-b094-e92efae38249 --- protocol.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/protocol.c b/protocol.c index 7577d690..f3301f58 100644 --- a/protocol.c +++ b/protocol.c @@ -2026,7 +2026,7 @@ void EntityFrame5_WriteFrame(sizebuf_t *msg, entityframe5_database_t *d, int num entityframe5_packetlog_t *packetlog; if (prog->max_edicts > d->maxedicts) - EntityFrame5_ExpandEdicts(d, (prog->max_edicts + 255) & ~255); + EntityFrame5_ExpandEdicts(d, prog->max_edicts); framenum = d->latestframenum + 1; d->viewentnum = viewentnum; @@ -2038,6 +2038,7 @@ void EntityFrame5_WriteFrame(sizebuf_t *msg, entityframe5_database_t *d, int num break; if (packetlognumber == ENTITYFRAME5_MAXPACKETLOGS) { + Con_DPrintf("EntityFrame5_WriteFrame: packetlog overflow for a client, resetting\n"); EntityFrame5_LostFrame(d, framenum); packetlognumber = 0; } @@ -2090,8 +2091,7 @@ void EntityFrame5_WriteFrame(sizebuf_t *msg, entityframe5_database_t *d, int num num++; } // all remaining entities are dead - // note: this must use prog->max_edicts, not prog->num_edicts, because prog->num_edicts can both increase and decrease, where as prog->max_edicts only increases (if prog->num_edicts is used, sometimes some entities are missed when the prog->num_edicts count goes back down after firing some shots) - for (;num < prog->max_edicts;num++) + for (;num < d->maxedicts;num++) { if (CHECKPVSBIT(d->visiblebits, num)) { @@ -2111,7 +2111,7 @@ void EntityFrame5_WriteFrame(sizebuf_t *msg, entityframe5_database_t *d, int num // build lists of entities by priority level memset(entityframe5_prioritychaincounts, 0, sizeof(entityframe5_prioritychaincounts)); l = 0; - for (num = 0;num < prog->num_edicts;num++) + for (num = 0;num < d->maxedicts;num++) { if (d->priorities[num]) { -- 2.39.2