From 58eff984dac471c8356f169aae181557dc408860 Mon Sep 17 00:00:00 2001 From: November Date: Thu, 14 Oct 2010 16:43:32 -0700 Subject: [PATCH] Yeah screw this, everything set here was absolutely correct to begin with and I shouldn't be applying patches while half awake when requested. This reverts commit de947507b1b3d68095f26784c53c25b29bd41be7. --- indra/newview/llface.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llface.cpp b/indra/newview/llface.cpp index 85b776083..3d93dd4d2 100644 --- a/indra/newview/llface.cpp +++ b/indra/newview/llface.cpp @@ -1278,7 +1278,9 @@ F32 LLFace::getTextureVirtualSize() { //apply texel area to face area to get accurate ratio //face_area /= llclamp(texel_area, 1.f/64.f, 16.f); - face_area = mPixelArea / llclamp(texel_area, 0.015625f, 1024.f); + + //face_area = mPixelArea / llclamp(texel_area, 0.015625f, 1024.f); + face_area = mPixelArea / llclamp(texel_area, 0.015625f, 128.f); // see SNOW-207 } if(face_area > LLViewerImage::sMaxSmallImageSize)