diff options
author | Dave Parks <davep@lindenlab.com> | 2011-07-05 11:51:32 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2011-07-05 11:51:32 -0500 |
commit | d50093cb4288642b9e715dd197d3c500cd6c811e (patch) | |
tree | eeecb5cab166bc3166891a0b11894d7bdd29c7ef /indra/llmath | |
parent | 662a92784328f31b680f4f049350dd0f6cacf4c7 (diff) |
SH-1926 Fix for blocking legitimate sculpt maps with over-eager area check.
Diffstat (limited to 'indra/llmath')
-rw-r--r-- | indra/llmath/llvolume.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llmath/llvolume.cpp b/indra/llmath/llvolume.cpp index 8c81f27784..f20a5c37b4 100644 --- a/indra/llmath/llvolume.cpp +++ b/indra/llmath/llvolume.cpp @@ -3253,7 +3253,7 @@ void LLVolume::sculpt(U16 sculpt_width, U16 sculpt_height, S8 sculpt_components, { F32 area = sculptGetSurfaceArea(); - const F32 SCULPT_MAX_AREA = 32.f; + const F32 SCULPT_MAX_AREA = 384.f; if (area < SCULPT_MIN_AREA || area > SCULPT_MAX_AREA) { |