summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorTofu Linden <tofu.linden@lindenlab.com>2010-01-21 16:26:37 -0800
committerTofu Linden <tofu.linden@lindenlab.com>2010-01-21 16:26:37 -0800
commit906284b99ffbf5974cb41987a702b7e51957643a (patch)
tree421209c1bf476a96b221c634852ab2227f28ad4c /indra/newview
parentc510fed273864fcfe299d276e55a52916c989b5f (diff)
Fix inverted logic from review.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewertexture.cpp2
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;
}