diff options
author | Dave Parks <davep@lindenlab.com> | 2023-03-10 13:33:36 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2023-03-10 13:33:36 -0600 |
commit | bd4b03de8b73ecb888f8e3111bada7c643f7fcfd (patch) | |
tree | 9dd850ea81bc6aa280fac2262d2f8657856422c4 /indra/newview/llspatialpartition.cpp | |
parent | 2db036ba1758d36c28b9a7e5c32f732787ff8c44 (diff) |
DRTVWR-559 Fix for assert in LLVertexBuffer, incidental decruft.
Diffstat (limited to 'indra/newview/llspatialpartition.cpp')
-rw-r--r-- | indra/newview/llspatialpartition.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llspatialpartition.cpp b/indra/newview/llspatialpartition.cpp index d81d7ab674..92fccfcfd6 100644 --- a/indra/newview/llspatialpartition.cpp +++ b/indra/newview/llspatialpartition.cpp @@ -3105,7 +3105,8 @@ static void setTextureAreaDebugText(LLDrawable* drawablep) { std::ostringstream str; - for (S32 i = 0; i < vobjp->getNumTEs(); ++i) + //for (S32 i = 0; i < vobjp->getNumTEs(); ++i) + S32 i = 0; { if (i < drawablep->getNumFaces()) { @@ -3139,7 +3140,6 @@ static void setTextureAreaDebugText(LLDrawable* drawablep) vobjp->setDebugText(str.str()); } - break; } } else |