From bf3b44f2a1c5197361d6b1fbba89507ff6ee9d5b Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Tue, 6 Oct 2020 03:38:43 -0400
Subject: [PATCH] Small cleanup

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

diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index e99a5d2fd9a..fe760af5ea9 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -10802,7 +10802,7 @@ void LLVOAvatar::calcMutedAVColor()
    {
         // select a color based on the first byte of the agents uuid so any muted agent is always the same color
         F32 color_value = (F32) (av_id.mData[0]);
-        F32 spectrum = (color_value / 256.0);		// spectrum is between 0 and 1.f
+        F32 spectrum = (color_value / 256.f);		// spectrum is between 0 and 1.f
 
         // Array of colors.  These are arranged so only one RGB color changes between each step, 
         // and it loops back to red so there is an even distribution.  It is not a heat map
-- 
GitLab