diff options
author | Xiaohong Bao <bao@lindenlab.com> | 2010-01-15 15:36:43 -0800 |
---|---|---|
committer | Xiaohong Bao <bao@lindenlab.com> | 2010-01-15 15:36:43 -0800 |
commit | 9d7ad2733e1a41a573b0cf6c9a272f6f696f189c (patch) | |
tree | c88f4f8d256145e110d4762d55dc70dfc4f9d447 /indra/newview/llappviewer.cpp | |
parent | f3bd6481a554ade34b133b2ae805838e27598639 (diff) |
partial fix for EXT-4352: Texture loading problems in Viewer 2.0. More to come later (next week).
Diffstat (limited to 'indra/newview/llappviewer.cpp')
-rw-r--r-- | indra/newview/llappviewer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index fb1bded795..3b73343857 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -1676,7 +1676,7 @@ bool LLAppViewer::initThreads() // Image decoding LLAppViewer::sImageDecodeThread = new LLImageDecodeThread(enable_threads && true); LLAppViewer::sTextureCache = new LLTextureCache(enable_threads && true); - LLAppViewer::sTextureFetch = new LLTextureFetch(LLAppViewer::getTextureCache(), sImageDecodeThread, enable_threads && false); + LLAppViewer::sTextureFetch = new LLTextureFetch(LLAppViewer::getTextureCache(), sImageDecodeThread, enable_threads && true); LLImage::initClass(); if (LLFastTimer::sLog || LLFastTimer::sMetricLog) |