From 94fde578cd845b1a648e66ecf184e7a24beaad6d Mon Sep 17 00:00:00 2001
From: Loren Shih <seraph@lindenlab.com>
Date: Thu, 15 Jul 2010 17:54:09 -0400
Subject: [PATCH] EXT-8135 FIXED Textures blurry when in Appearance Edit mode

Trivial fix to correct for wrong debug message printed out due to use of wrong timer.
---
 indra/newview/lltexlayer.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/indra/newview/lltexlayer.cpp b/indra/newview/lltexlayer.cpp
index 355f46e2909..f4f8241b99d 100644
--- a/indra/newview/lltexlayer.cpp
+++ b/indra/newview/lltexlayer.cpp
@@ -536,10 +536,10 @@ void LLTexLayerSetBuffer::doUpload()
 				// Print out notification that we uploaded this texture.
 				if (gSavedSettings.getBOOL("DebugAvatarRezTime"))
 				{
-					std::string lod_str = highest_lod ? "HighRes" : "LowRes";
+					const std::string lod_str = highest_lod ? "HighRes" : "LowRes";
 					LLSD args;
 					args["EXISTENCE"] = llformat("%d",(U32)mTexLayerSet->getAvatar()->debugGetExistenceTimeElapsedF32());
-					args["TIME"] = llformat("%d",(U32)mNeedsUpdateTimer.getElapsedTimeF32());
+					args["TIME"] = llformat("%d",(U32)mNeedsUploadTimer.getElapsedTimeF32());
 					args["BODYREGION"] = mTexLayerSet->getBodyRegionName();
 					args["RESOLUTION"] = lod_str;
 					args["ACTION"] = "uploaded";
@@ -587,10 +587,10 @@ void LLTexLayerSetBuffer::doUpdate()
 	if (gSavedSettings.getBOOL("DebugAvatarRezTime"))
 	{
 		const BOOL highest_lod = mTexLayerSet->isLocalTextureDataFinal();
-		std::string lod_str = highest_lod ? "HighRes" : "LowRes";
+		const std::string lod_str = highest_lod ? "HighRes" : "LowRes";
 		LLSD args;
 		args["EXISTENCE"] = llformat("%d",(U32)mTexLayerSet->getAvatar()->debugGetExistenceTimeElapsedF32());
-		args["TIME"] = llformat("%d",(U32)mNeedsUploadTimer.getElapsedTimeF32());
+		args["TIME"] = llformat("%d",(U32)mNeedsUpdateTimer.getElapsedTimeF32());
 		args["BODYREGION"] = mTexLayerSet->getBodyRegionName();
 		args["RESOLUTION"] = lod_str;
 		args["ACTION"] = "locally updated";
-- 
GitLab