summaryrefslogtreecommitdiff
path: root/indra/newview/llhudtext.cpp
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-02-18 16:49:45 +0000
committerTofu Linden <tofu.linden@lindenlab.com>2010-02-18 16:49:45 +0000
commitdc7db357ac4e50f2d1e0d47fd50fd712f67dffe6 (patch)
tree7e0b4842a2f55cadd4cc44cb3d95d9581c2e5716 /indra/newview/llhudtext.cpp
parente09822153e135e8fc89f6fdb3338bb9e8e5b6132 (diff)
Backed out changeset 83d7019fda75
backing-out render-pipeline-specific version of EXT-5389 fix because it just doesn't reliably work right.
Diffstat (limited to 'indra/newview/llhudtext.cpp')
-rw-r--r--indra/newview/llhudtext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llhudtext.cpp b/indra/newview/llhudtext.cpp
index b49e14bc7d..9ed5d13831 100644
--- a/indra/newview/llhudtext.cpp
+++ b/indra/newview/llhudtext.cpp
@@ -374,7 +374,7 @@ void LLHUDText::renderText(BOOL for_select)
{
gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE);
S32 name = mSourceObject->mGLName;
- LLColor4U coloru((U8)(name >> 16), (U8)(name >> 8), (U8)name, 0);
+ LLColor4U coloru((U8)(name >> 16), (U8)(name >> 8), (U8)name);
gGL.color4ubv(coloru.mV);
gl_segmented_rect_3d_tex(border_scale_vec, scaled_border_width, scaled_border_height, width_vec, height_vec);
LLUI::popMatrix();