From 854335dad85cb128872a56f1e5295cb2b192e336 Mon Sep 17 00:00:00 2001 From: Spoike Date: Tue, 12 Mar 2013 23:21:14 +0000 Subject: [PATCH] ------------------------------------------------------------------------ r4253 | acceptthis | 2013-03-09 16:58:54 +0000 (Sat, 09 Mar 2013) | 1 line Fix particle system shutdown without particle system running. ------------------------------------------------------------------------ git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4249 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/r_part.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/r_part.c b/engine/client/r_part.c index ca3e02007..6b2c7ef6c 100644 --- a/engine/client/r_part.c +++ b/engine/client/r_part.c @@ -180,9 +180,9 @@ void P_InitParticleSystem(void) void P_Shutdown(void) { - CL_ClearLerpEntsParticleState(); if (pe) { + CL_ClearLerpEntsParticleState(); pe->ShutdownParticles(); } pe = NULL;