diff --git a/indra/newview/app_settings/settings.xml b/indra/newview/app_settings/settings.xml
index 7b30bbebab80765dbcae70374ff0c2b4e0e700dc..14384edc1f600d81cdbdcf8a81478297af99992c 100755
--- a/indra/newview/app_settings/settings.xml
+++ b/indra/newview/app_settings/settings.xml
@@ -742,7 +742,7 @@
       <key>Value</key>
       <integer>40</integer>
     </map>
-    <key>BackShpereCullingRadius</key>
+    <key>BackSphereCullingRadius</key>
     <map>
       <key>Comment</key>
       <string>Radius of back sphere in meters, objects behind camera but within this radius are loaded for rendering</string>
@@ -751,7 +751,7 @@
       <key>Type</key>
       <string>F32</string>
       <key>Value</key>
-      <real>20.0</real>
+      <real>100.0</real>
     </map>
     <key>BottomPanelNew</key>
     <map>
@@ -6456,7 +6456,7 @@
       <key>Type</key>
       <string>S32</string>
       <key>Value</key>
-      <integer>64</integer>
+      <integer>200</integer>
     </map>
     <key>NewObjectCreationThrottleDelayTime</key>
     <map>
@@ -6577,7 +6577,7 @@
       <key>Type</key>
       <string>U32</string>
       <key>Value</key>
-      <integer>64</integer>
+			<integer>300</integer>
     </map>
     <key>NoPreload</key>
     <map>
@@ -7121,7 +7121,7 @@
     <key>Type</key>
     <string>F32</string>
     <key>Value</key>
-    <real>16.0</real>
+    <real>100.0</real>
   </map>
     <key>ParcelMediaAutoPlayEnable</key>
     <map>
diff --git a/indra/newview/llviewerregion.cpp b/indra/newview/llviewerregion.cpp
index 6ba620964becaa75b3fd986e062e7f2f192a1ba1..8093ce523fff8daf79a49569f91f9701ccaf2d89 100755
--- a/indra/newview/llviewerregion.cpp
+++ b/indra/newview/llviewerregion.cpp
@@ -1379,7 +1379,7 @@ BOOL LLViewerRegion::isViewerCameraStatic()
 
 void LLViewerRegion::killInvisibleObjects(F32 max_time)
 {
-	static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackShpereCullingRadius");
+	static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackSphereCullingRadius");
 
 	if(!sVOCacheCullingEnabled)
 	{
diff --git a/indra/newview/llvocache.cpp b/indra/newview/llvocache.cpp
index 2ff2d0f34134ee5d35252b0c7d21aea282318647..f2c048cd34b5f26f5e3ede24e26d047fd7369fae 100755
--- a/indra/newview/llvocache.cpp
+++ b/indra/newview/llvocache.cpp
@@ -752,7 +752,7 @@ void LLVOCachePartition::selectBackObjects(LLCamera &camera, F32 back_sphere_rad
 S32 LLVOCachePartition::cull(LLCamera &camera, bool do_occlusion)
 {
 	static LLCachedControl<bool> use_object_cache_occlusion(gSavedSettings,"UseObjectCacheOcclusion");
-	static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackShpereCullingRadius");	
+	static LLCachedControl<F32> back_sphere_radius(gSavedSettings,"BackSphereCullingRadius");	
 	
 	if(!LLViewerRegion::sVOCacheCullingEnabled)
 	{