summaryrefslogtreecommitdiff
path: root/indra/newview/lldrawable.cpp
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2016-12-20 00:25:34 +0200
committerAndreyL ProductEngine <alihatskiy@productengine.com>2016-12-20 00:25:34 +0200
commitdb8eb0f995889e222e38748dfee647058653e3f6 (patch)
tree39a67775fcb6af910a8519b73fa9f5c288204044 /indra/newview/lldrawable.cpp
parentccff36c8ee278129af3a8916bf931ab4ca14a76d (diff)
parent946b28ad765dc43ad6d1c715fa93a6f7c233ce64 (diff)
Merged in lindenlab/viewer-lynx
Diffstat (limited to 'indra/newview/lldrawable.cpp')
-rw-r--r--indra/newview/lldrawable.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/lldrawable.cpp b/indra/newview/lldrawable.cpp
index 3bb2c45a24..f956023358 100644
--- a/indra/newview/lldrawable.cpp
+++ b/indra/newview/lldrawable.cpp
@@ -979,7 +979,9 @@ void LLDrawable::updateSpatialExtents()
if (mVObjp)
{
const LLVector4a* exts = getSpatialExtents();
- LLVector4a extents[2] = { exts[0], exts[1] };
+ LLVector4a extents[2];
+ extents[0] = exts[0];
+ extents[1] = exts[1];
mVObjp->updateSpatialExtents(extents[0], extents[1]);
setSpatialExtents(extents[0], extents[1]);