engine: server: unused variables cleanup

This commit is contained in:
Alibek Omarov 2023-12-05 10:46:03 +03:00
parent 3bf55c9ea4
commit 0c512d0431
2 changed files with 1 additions and 3 deletions

View File

@ -36,7 +36,7 @@ static void SV_SourceQuery_Details( netadr_t from )
{
sizebuf_t buf;
char answer[2048];
int i, bot_count, client_count;
int bot_count, client_count;
int is_private = 0;
SV_GetPlayerCount( &client_count, &bot_count );

View File

@ -1475,7 +1475,6 @@ static qboolean SV_RecursiveLightPoint( model_t *model, mnode_t *node, const vec
float ds, dt, s, t;
int sample_size;
msurface_t *surf;
mtexinfo_t *tex;
mextrasurf_t *info;
color24 *lm;
vec3_t mid;
@ -1510,7 +1509,6 @@ static qboolean SV_RecursiveLightPoint( model_t *model, mnode_t *node, const vec
{
int smax, tmax;
tex = surf->texinfo;
info = surf->info;
if( FBitSet( surf->flags, SURF_DRAWTILED ))