fix infinite loop in while

This commit is contained in:
Andrew Meadows 2015-05-05 11:00:25 -07:00
parent 25ff9e4b59
commit 813d702fc5

View file

@ -168,6 +168,8 @@ VectorOfMotionStates& PhysicalEntitySimulation::getObjectsToAdd() {
} else { } else {
++entityItr; ++entityItr;
} }
} else {
++entityItr;
} }
} }
return _tempVector; return _tempVector;