summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerjointmesh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewerjointmesh.cpp')
-rw-r--r--indra/newview/llviewerjointmesh.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/indra/newview/llviewerjointmesh.cpp b/indra/newview/llviewerjointmesh.cpp
index 4cacc5c97b..c0e02921cf 100644
--- a/indra/newview/llviewerjointmesh.cpp
+++ b/indra/newview/llviewerjointmesh.cpp
@@ -558,7 +558,12 @@ U32 LLViewerJointMesh::drawShape( F32 pixelArea, BOOL first_pass)
}
else
{
- llwarns << "Layerset without composite" << llendl;
+ // This warning will always trigger if you've hacked the avatar to show as incomplete.
+ // Ignore the warning if that's the case.
+ if (!gSavedSettings.getBOOL("RenderUnloadedAvatar"))
+ {
+ llwarns << "Layerset without composite" << llendl;
+ }
gGL.getTexUnit(0)->bind(gImageList.getImage(IMG_DEFAULT));
}
}