diff options
| author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-21 16:26:37 -0800 | 
|---|---|---|
| committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-01-21 16:26:37 -0800 | 
| commit | 906284b99ffbf5974cb41987a702b7e51957643a (patch) | |
| tree | 421209c1bf476a96b221c634852ab2227f28ad4c | |
| parent | c510fed273864fcfe299d276e55a52916c989b5f (diff) | |
Fix inverted logic from review.
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 2544e46bab..3f42cba561 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -1561,7 +1561,7 @@ F32 LLViewerFetchedTexture::calcDecodePriority()  void LLViewerFetchedTexture::setDecodePriority(F32 priority)  {  	//llassert(!mInImageList); // firing a lot, figure out why -        if (!mInImageList) // above llassert() softened to a warning +        if (mInImageList) // above llassert() softened to a warning          {                  llwarns << "BAD STUFF!  mInImageList" << llendl;          } | 
