summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2015-11-20 09:21:20 -0500
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2015-11-20 09:21:20 -0500
commitfff9d936f93cd22efcdcc4b37489d57100d8d261 (patch)
tree0586bae40a50e4348281cb7e76f856f328b84e97
parent2bd8234fe574ec08eed8d9c04e938482315dbc27 (diff)
SL-273 WIP - possible fix for linux build failure
-rwxr-xr-xindra/newview/llvoavatar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index cf49cd2589..d5b663b6cd 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -1399,7 +1399,7 @@ void LLVOAvatar::renderBones()
LLGLDepthTest normal_depth(GL_TRUE);
// Unoccluded bone portions
- if (sc == LLJoint::SupportCategory::SUPPORT_BASE)
+ if (sc == LLJoint::SUPPORT_BASE)
{
gGL.diffuseColor3f( 1.0f, 0.5f, 0.5f );
}
@@ -1415,7 +1415,7 @@ void LLVOAvatar::renderBones()
LLGLDepthTest depth_under(GL_TRUE, GL_FALSE, GL_GREATER);
// Unoccluded bone portions
- if (sc == LLJoint::SupportCategory::SUPPORT_BASE)
+ if (sc == LLJoint::SUPPORT_BASE)
{
gGL.diffuseColor3f( 1.0f, 0.0f, 0.0f );
}