From b9c658ae20876b9f4f80e234134804b3ee0f99fa Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 9 May 2017 21:52:40 -0400 Subject: [PATCH] elements are only recounted when unpaused, apparently --- src/simulation/Simulation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/simulation/Simulation.cpp b/src/simulation/Simulation.cpp index d977dd5204..1a7c9638fe 100644 --- a/src/simulation/Simulation.cpp +++ b/src/simulation/Simulation.cpp @@ -4954,7 +4954,7 @@ void Simulation::RecalcFreeParticles() parts[lastPartUnused].life = parts_lastActiveIndex+1; } parts_lastActiveIndex = lastPartUsed; - if (elementRecount) + if (elementRecount && !sys_pause || framerender) elementRecount = false; }