diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2010-03-18 22:07:25 -0600 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2010-03-18 22:07:25 -0600 |
commit | 12a86042f726fbc9bba06103ed8c68bf954e6c6a (patch) | |
tree | 9120f56e3c2760ede88d605d1a7db0515bf289f7 /indra/newview/lltexturefetch.cpp | |
parent | 1900b5f4100a94cf89181a077102f248f9dc80fe (diff) |
fix for EXT-6465: sometimes the texture fetching queue is never empty.
Diffstat (limited to 'indra/newview/lltexturefetch.cpp')
-rw-r--r-- | indra/newview/lltexturefetch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index b1b3ae473c..1c7b3a0fe0 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -571,7 +571,7 @@ bool LLTextureFetchWorker::doWork(S32 param) if ((mFetcher->isQuitting() || mImagePriority < 1.0f || getFlags(LLWorkerClass::WCF_DELETE_REQUESTED))) { - if (mState < WRITE_TO_CACHE) + if (mState < DECODE_IMAGE) { return true; // abort } |