diff --git a/indra/newview/llappcorehttp.cpp b/indra/newview/llappcorehttp.cpp
index 4386e3283b51b910b00406cb6a92a680e467bf6a..142344e277eb72610a146739c8bd4f9495eb8937 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)
 			{