mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
CL_ParseUpdate: removed unused bitcounts[] array
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@516 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
fd046a0f48
commit
db8569aa86
1 changed files with 4 additions and 10 deletions
|
@ -403,17 +403,15 @@ If an entities model or origin changes from frame to frame, it must be
|
|||
relinked. Other attributes can change without relinking.
|
||||
==================
|
||||
*/
|
||||
int bitcounts[16];
|
||||
|
||||
void CL_ParseUpdate (int bits)
|
||||
{
|
||||
int i;
|
||||
int i;
|
||||
model_t *model;
|
||||
int modnum;
|
||||
int modnum;
|
||||
qboolean forcelink;
|
||||
entity_t *ent;
|
||||
int num;
|
||||
int skin;
|
||||
int num;
|
||||
int skin;
|
||||
|
||||
if (cls.signon == SIGNONS - 1)
|
||||
{ // first update is the final signon stage
|
||||
|
@ -444,10 +442,6 @@ void CL_ParseUpdate (int bits)
|
|||
|
||||
ent = CL_EntityNum (num);
|
||||
|
||||
for (i=0 ; i<16 ; i++)
|
||||
if (bits&(1<<i))
|
||||
bitcounts[i]++;
|
||||
|
||||
if (ent->msgtime != cl.mtime[1])
|
||||
forcelink = true; // no previous frame to lerp from
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue