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:
Ozkan Sezer 2011-12-13 19:00:25 +00:00
parent fd046a0f48
commit db8569aa86

View file

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