diff options
author | thickbrick | 2010-10-15 01:21:53 +0200 |
---|---|---|
committer | thickbrick | 2010-10-15 01:21:53 +0200 |
commit | 7b0ce8e12ac68bfc1eb7524a394aaf3a485b559b (patch) | |
tree | 6ef0a1b787d63a0ddd308f3dd2e4a475705d079e /linden/indra/newview/lltexturefetch.cpp | |
parent | Work around for buggy range responses in OpenSim (diff) | |
download | meta-impy-7b0ce8e12ac68bfc1eb7524a394aaf3a485b559b.zip meta-impy-7b0ce8e12ac68bfc1eb7524a394aaf3a485b559b.tar.gz meta-impy-7b0ce8e12ac68bfc1eb7524a394aaf3a485b559b.tar.bz2 meta-impy-7b0ce8e12ac68bfc1eb7524a394aaf3a485b559b.tar.xz |
Fix typo in buggy OpenSim version detection.
Diffstat (limited to 'linden/indra/newview/lltexturefetch.cpp')
-rw-r--r-- | linden/indra/newview/lltexturefetch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lltexturefetch.cpp b/linden/indra/newview/lltexturefetch.cpp index bd1812e..e307aff 100644 --- a/linden/indra/newview/lltexturefetch.cpp +++ b/linden/indra/newview/lltexturefetch.cpp | |||
@@ -896,7 +896,7 @@ bool LLTextureFetchWorker::doWork(S32 param) | |||
896 | mGetReason.clear(); | 896 | mGetReason.clear(); |
897 | LL_DEBUGS("TextureFetch") << "HTTP GET: " << mID << " Offset: " << offset | 897 | LL_DEBUGS("TextureFetch") << "HTTP GET: " << mID << " Offset: " << offset |
898 | << " Bytes: " << mRequestedSize | 898 | << " Bytes: " << mRequestedSize |
899 | << " Range: " << offset << "-" << offset+mRequestedSize-1 | 899 | << " Range: " << offset << "-" << offset+mRequestedSize-1+buggy_range_fudge |
900 | << " Bandwidth(kbps): " << mFetcher->getTextureBandwidth() << "/" << max_bandwidth | 900 | << " Bandwidth(kbps): " << mFetcher->getTextureBandwidth() << "/" << max_bandwidth |
901 | << LL_ENDL; | 901 | << LL_ENDL; |
902 | setPriority(LLWorkerThread::PRIORITY_LOW | mWorkPriority); | 902 | setPriority(LLWorkerThread::PRIORITY_LOW | mWorkPriority); |
@@ -2283,7 +2283,7 @@ bool LLTextureFetch::hasBuggyHTTPRange() | |||
2283 | if ((s_version != gLastVersionChannel) && !gLastVersionChannel.empty()) | 2283 | if ((s_version != gLastVersionChannel) && !gLastVersionChannel.empty()) |
2284 | { | 2284 | { |
2285 | s_version = gLastVersionChannel; | 2285 | s_version = gLastVersionChannel; |
2286 | buggy = true; | 2286 | buggy = false; |
2287 | if (gHippoGridManager->getConnectedGrid()->getPlatform() == HippoGridInfo::PLATFORM_OPENSIM) | 2287 | if (gHippoGridManager->getConnectedGrid()->getPlatform() == HippoGridInfo::PLATFORM_OPENSIM) |
2288 | { | 2288 | { |
2289 | std::string ver_string; | 2289 | std::string ver_string; |