summaryrefslogtreecommitdiff
path: root/indra/newview/lldrawable.cpp
diff options
context:
space:
mode:
authorAndreyL ProductEngine <alihatskiy@productengine.com>2016-12-15 02:40:51 +0200
committerAndreyL ProductEngine <alihatskiy@productengine.com>2016-12-15 02:40:51 +0200
commit71269ac1fc4ab19d46fd33c82b1df7a887b918bc (patch)
tree789532188e463f326efe5422f9fefefd81ad550a /indra/newview/lldrawable.cpp
parentdcff9513f1b6d2b2dca9ec5f3bb9597992c0f9f2 (diff)
Backed out changeset: ebe10b4b1197
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]);