From d8bf958a06dbaae03b4fd1ff8a6e12dd4f7dccd0 Mon Sep 17 00:00:00 2001 From: MajorCooke Date: Fri, 10 Jun 2016 21:41:13 -0500 Subject: [PATCH] Fixed: Frozen particles would still be deleted when frozen instead of doing nothing with. --- src/p_effect.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_effect.cpp b/src/p_effect.cpp index c678f8def..7aff1c5cc 100644 --- a/src/p_effect.cpp +++ b/src/p_effect.cpp @@ -263,12 +263,12 @@ void P_ThinkParticles () { particle = Particles + i; i = particle->tnext; - if (!particle->notimefreeze && ((bglobal.freeze) || (level.flags2 & LEVEL2_FROZEN))) { + prev = particle; continue; } - + BYTE oldtrans; oldtrans = particle->trans; particle->trans -= particle->fade;