aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llviewerobjectlist.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/llviewerobjectlist.cpp')
-rw-r--r--linden/indra/newview/llviewerobjectlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llviewerobjectlist.cpp b/linden/indra/newview/llviewerobjectlist.cpp
index ad92fe3..d0aa4b1 100644
--- a/linden/indra/newview/llviewerobjectlist.cpp
+++ b/linden/indra/newview/llviewerobjectlist.cpp
@@ -639,7 +639,7 @@ void LLViewerObjectList::updateApparentAngles(LLAgent &agent)
639 mCurLazyUpdateIndex = 0; 639 mCurLazyUpdateIndex = 0;
640 } 640 }
641 641
642 mCurBin = (++mCurBin) % NUM_BINS; 642 mCurBin = (mCurBin + 1) % NUM_BINS;
643 643
644 LLVOAvatar::cullAvatarsByPixelArea(); 644 LLVOAvatar::cullAvatarsByPixelArea();
645} 645}