diff options
author | David Walter Seikel | 2012-03-20 23:12:04 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-03-20 23:12:04 +1000 |
commit | bbcf8197af92fa245038d9313a9eacc1255f77f1 (patch) | |
tree | df1232faaa7de093bdf9988bf99200a0e7c5e3d0 /linden/indra/newview/llviewerobjectlist.cpp | |
parent | Remove a duplicate return statement. Thanks to Nicky Perian for pointing thi... (diff) | |
download | meta-impy-bbcf8197af92fa245038d9313a9eacc1255f77f1.zip meta-impy-bbcf8197af92fa245038d9313a9eacc1255f77f1.tar.gz meta-impy-bbcf8197af92fa245038d9313a9eacc1255f77f1.tar.bz2 meta-impy-bbcf8197af92fa245038d9313a9eacc1255f77f1.tar.xz |
Let it build under gcc 4.5.2. Thanks to Lord Drakeo for fixing this.
Diffstat (limited to 'linden/indra/newview/llviewerobjectlist.cpp')
-rw-r--r-- | linden/indra/newview/llviewerobjectlist.cpp | 2 |
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 | } |