diff options
author | Oz Linden <oz@lindenlab.com> | 2013-08-22 14:39:40 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-08-22 14:39:40 -0400 |
commit | 1e2a6ee3f440b7d076dc97f3a0628c90195f5386 (patch) | |
tree | 5d39d139ed599569fc4d0e55eb7a25a76d8560ee /indra | |
parent | ba248b8b5da84b69a20aa3704a64e20907c95958 (diff) | |
parent | be07694b9cc8d2203cfedc777bcb00021dfa91a1 (diff) |
merge changes for maint-2773
Diffstat (limited to 'indra')
-rwxr-xr-x | indra/newview/llviewerobjectlist.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/indra/newview/llviewerobjectlist.cpp b/indra/newview/llviewerobjectlist.cpp index 66615657d8..b4e287c446 100755 --- a/indra/newview/llviewerobjectlist.cpp +++ b/indra/newview/llviewerobjectlist.cpp @@ -954,15 +954,17 @@ void LLViewerObjectList::update(LLAgent &agent, LLWorld &world) objectp = *idle_iter; llassert(objectp->isActive()); objectp->idleUpdate(agent, world, frame_time); - - } + } //update flexible objects LLVolumeImplFlexible::updateClass(); //update animated textures - LLViewerTextureAnim::updateClass(); - } + if (gAnimateTextures) + { + LLViewerTextureAnim::updateClass(); + } + } |