From 74a59f17c7afb6e427df22a25e44327b7b6e0739 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Wed, 7 Jun 2017 21:07:34 -0500 Subject: [PATCH] Don't copy p->org to itself in cg_particles.c --- code/cgame/cg_particles.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/cgame/cg_particles.c b/code/cgame/cg_particles.c index 53507ad5..2c70281f 100644 --- a/code/cgame/cg_particles.c +++ b/code/cgame/cg_particles.c @@ -1027,10 +1027,6 @@ void CG_ParticleSnowFlurry (qhandle_t pshader, centity_t *cent) VectorCopy(cent->currentState.origin, p->org); - p->org[0] = p->org[0]; - p->org[1] = p->org[1]; - p->org[2] = p->org[2]; - p->vel[0] = p->vel[1] = 0; p->accel[0] = p->accel[1] = p->accel[2] = 0;