diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llviewercamera.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/llviewercamera.cpp b/linden/indra/newview/llviewercamera.cpp index 6cef2af..dade65f 100644 --- a/linden/indra/newview/llviewercamera.cpp +++ b/linden/indra/newview/llviewercamera.cpp | |||
@@ -769,8 +769,8 @@ BOOL LLViewerCamera::areVertsVisible(LLViewerObject* volumep, BOOL all_verts) | |||
769 | 769 | ||
770 | BOOL in_frustum = pointInFrustum(LLVector3(vec)) > 0; | 770 | BOOL in_frustum = pointInFrustum(LLVector3(vec)) > 0; |
771 | 771 | ||
772 | if ( !in_frustum && all_verts || | 772 | if (( !in_frustum && all_verts) || |
773 | in_frustum && !all_verts) | 773 | (in_frustum && !all_verts)) |
774 | { | 774 | { |
775 | return !all_verts; | 775 | return !all_verts; |
776 | } | 776 | } |