Skip to content
Snippets Groups Projects
Commit 5bc768f9 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Revert to fix crash...whoops!

parent 7528fe21
No related branches found
No related tags found
No related merge requests found
......@@ -558,8 +558,11 @@ void LLMotionController::updateMotionsByType(LLMotion::LLMotionBlendType anim_ty
memset(&last_joint_signature, 0, sizeof(U8) * LL_CHARACTER_MAX_ANIMATED_JOINTS);
// iterate through active motions in chronological order
for (LLMotion* motionp : mActiveMotions)
for (motion_list_t::iterator iter = mActiveMotions.begin();
iter != mActiveMotions.end(); )
{
motion_list_t::iterator curiter = iter++;
LLMotion* motionp = *curiter;
if (motionp->getBlendType() != anim_type)
{
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment