diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llappcorehttp.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llappcorehttp.cpp b/indra/newview/llappcorehttp.cpp index 4386e3283b..142344e277 100644 --- a/indra/newview/llappcorehttp.cpp +++ b/indra/newview/llappcorehttp.cpp @@ -139,7 +139,8 @@ void LLAppCoreHttp::init()  		static const std::string mesh_concur("MeshMaxConcurrentRequests");  		if (gSavedSettings.controlExists(mesh_concur))  		{ -			U32 setting(llmin(gSavedSettings.getU32(mesh_concur), U32(32))); +			U32 setting(llmin(gSavedSettings.getU32(mesh_concur), 256U) / 4U); +			setting = llmax(setting, 2U);  			if (setting > 0)  			{  | 
