diff options
author | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-02-10 12:15:05 -0500 |
---|---|---|
committer | Nyx (Neal Orman) <nyx@lindenlab.com> | 2010-02-10 12:15:05 -0500 |
commit | f8e22b3e285c08e95ed8cedfeeff4912c8b82b58 (patch) | |
tree | 146060d572ba818adf218844df421144729ee48b | |
parent | 22dccc74a8fbcf3231d932db39781727833b9259 (diff) |
EXT-5301 log spam when wearing alpha mask
added additional check on no host for texture error
so that we don't trigger it for IMG_INVISIBLE.
code reviewed by Seraph
-rw-r--r-- | indra/newview/llvoavatar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 4235f97eab..afe325856b 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -4048,6 +4048,7 @@ void LLVOAvatar::updateTextures() // Spam if this is a baked texture, not set to default image, without valid host info if (isIndexBakedTexture((ETextureIndex)texture_index) && imagep->getID() != IMG_DEFAULT_AVATAR + && imagep->getID() != IMG_INVISIBLE && !imagep->getTargetHost().isOk()) { LL_WARNS_ONCE("Texture") << "LLVOAvatar::updateTextures No host for texture " |