diff options
author | Dave Parks <davep@lindenlab.com> | 2011-04-15 14:12:12 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-04-15 14:12:12 -0500 |
commit | 6a491424677086a84d180ace0b91f1eefaeb67ba (patch) | |
tree | 0968856aadb685678d7e2fc7dc8b8b0442203fc9 /indra/llprimitive | |
parent | 8275820df01e9918f254f1a2cd373eb723b88715 (diff) |
Remove some asserts that cause the physics shape display to error out on occasion.
Diffstat (limited to 'indra/llprimitive')
-rwxr-xr-x | indra/llprimitive/llmodel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index 03b893de29..5af1122451 100755 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -2067,7 +2067,7 @@ void LLModel::Decomposition::fromLLSD(LLSD& decomp) std::set<U64> valid; //must have at least 4 points - llassert(count > 3); + //llassert(count > 3); for (U32 j = 0; j < count; ++j) { @@ -2085,7 +2085,7 @@ void LLModel::Decomposition::fromLLSD(LLSD& decomp) } //each hull must contain at least 4 unique points - llassert(valid.size() > 3); + //llassert(valid.size() > 3); } } |