From f6da6055ad3f1532cd79b5d03f602a86fd176c86 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Fri, 20 Dec 2024 13:06:46 +0100 Subject: [PATCH] Always great defining enums and then not using them... --- indra/newview/llviewertexture.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index a3d6d4694d..363f62b5f2 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1849,7 +1849,9 @@ bool LLViewerFetchedTexture::isActiveFetching() { static LLCachedControl monitor_enabled(gSavedSettings,"DebugShowTextureInfo"); - return mFetchState > 7 && mFetchState < 10 && monitor_enabled; //in state of WAIT_HTTP_REQ or DECODE_IMAGE. + // OpenSim compatibility + //return mFetchState > 7 && mFetchState < 10 && monitor_enabled; //in state of WAIT_HTTP_REQ or DECODE_IMAGE. + return mFetchState > 8 && mFetchState < 11 && monitor_enabled; //in state of WAIT_HTTP_REQ or DECODE_IMAGE. } void LLViewerFetchedTexture::setBoostLevel(S32 level)