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

Fix smol bug

parent e88efeaa
No related branches found
No related tags found
No related merge requests found
......@@ -521,7 +521,7 @@ void LLControlAvatar::updateAnimations()
{
//LL_INFOS("AnimatedObjects") << "updating anim for vol " << volp->getID() << " root " << mRootVolp->getID() << LL_ENDL;
signaled_animation_map_t& signaled_animations = LLObjectSignaledAnimationMap::instance().getMap()[volp->getID()];
for (const auto anim_pair : signaled_animations)
for (const auto& anim_pair : signaled_animations)
{
std::map<LLUUID,S32>::iterator found_anim_it = anims.find(anim_pair.first);
if (found_anim_it != anims.end())
......
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