From 6fdfde31d92803f84e11d93cfc7f1b3d79ede230 Mon Sep 17 00:00:00 2001 From: Andrew Meadows Date: Mon, 8 Dec 2014 11:20:27 -0800 Subject: [PATCH] whoops, forgot to increment the iterator --- libraries/entities/src/SimpleEntitySimulation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/entities/src/SimpleEntitySimulation.cpp b/libraries/entities/src/SimpleEntitySimulation.cpp index b962f6980e..17dbd46727 100644 --- a/libraries/entities/src/SimpleEntitySimulation.cpp +++ b/libraries/entities/src/SimpleEntitySimulation.cpp @@ -25,6 +25,7 @@ void SimpleEntitySimulation::updateEntitiesInternal(const quint64& now) { } else { entity->simulate(now); _entitiesToBeSorted.insert(entity); + ++itemItr; } } }