Always great defining enums and then not using them...

master
Ansariel 2024-12-20 13:06:46 +01:00
parent 2dab059997
commit f6da6055ad
1 changed files with 3 additions and 1 deletions

View File

@ -1849,7 +1849,9 @@ bool LLViewerFetchedTexture::isActiveFetching()
{
static LLCachedControl<bool> monitor_enabled(gSavedSettings,"DebugShowTextureInfo");
return mFetchState > 7 && mFetchState < 10 && monitor_enabled; //in state of WAIT_HTTP_REQ or DECODE_IMAGE.
// <FS:Ansariel> 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)