From fcf894af255e8b931af09883aa8ee2a900199d39 Mon Sep 17 00:00:00 2001
From: simon <none@none>
Date: Fri, 22 Mar 2013 13:13:09 -0700
Subject: [PATCH] Lighten imposter avatar colors a bit per feedeback.

---
 indra/newview/llvoavatar.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index cce4925e0a6..76df6dc0ed0 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -8717,7 +8717,8 @@ LLColor4 LLVOAvatar::calcMutedAVColor(F32 value, S32 range_low, S32 range_high)
 	F32 fractBetween = spectrum - (F32)(spectrum_index_1);  // distance between the two indexes (0-1)
  
 	LLColor4 new_color = lerp(*spectrum_color[spectrum_index_1], *spectrum_color[spectrum_index_2], fractBetween);
-	//new_color.normalize();
+	new_color.normalize();
+	new_color *= 0.9f;
 
 	//llinfos << "From value " << std::setprecision(3) << value << " returning color " << new_color 
 	//	<< " using indexes " << spectrum_index_1 << ", " << spectrum_index_2
-- 
GitLab