engine: client: efx: remove unused CL_FreeParticle

This commit is contained in:
Alibek Omarov 2023-04-03 04:30:08 +03:00
parent 9cdce1ce69
commit d7848b7b8d
1 changed files with 0 additions and 20 deletions

View File

@ -140,26 +140,6 @@ void CL_FreeParticles( void )
cl_particles = NULL;
}
/*
================
CL_FreeParticle
move particle to freelist
================
*/
void CL_FreeParticle( particle_t *p )
{
if( p->deathfunc )
{
// call right the deathfunc before die
p->deathfunc( p );
p->deathfunc = NULL;
}
p->next = cl_free_particles;
cl_free_particles = p;
}
/*
================
CL_AllocParticleFast