diff --git a/indra/newview/app_settings/settings_alchemy.xml b/indra/newview/app_settings/settings_alchemy.xml
index e94a72952624ae0b3141c8d16ddf0bcb3674fb77..75b8c72817601754ba258fe2d095971a57cf5940 100644
--- a/indra/newview/app_settings/settings_alchemy.xml
+++ b/indra/newview/app_settings/settings_alchemy.xml
@@ -288,17 +288,6 @@
       <key>Value</key>
       <integer>0</integer>
     </map>
-    <key>AlchemyMainLoopSleep</key>
-    <map>
-      <key>Comment</key>
-      <string>Sleep main loop after 90-ish fps threshold to reduce needless gpu strain</string>
-      <key>Persist</key>
-      <integer>1</integer>
-      <key>Type</key>
-      <string>Boolean</string>
-      <key>Value</key>
-      <integer>1</integer>
-    </map>
     <key>AlchemyMapShowAgentCount</key>
     <map>
       <key>Comment</key>
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index a73ff79b7fd293f6e0af12ba94ae1ccb3f6fa6da..d0c19793865f195b15d08572c5664de09565d83e 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -1493,25 +1493,6 @@ bool LLAppViewer::doFrame()
 
 				display();
 
-				static const LLCachedControl<bool> sleep_main_loop(gSavedSettings, "AlchemyMainLoopSleep", true);
-				if (sleep_main_loop)
-				{
-					static U64 last_call = 0;
-					if (!gTeleportDisplay || gGLManager.mIsIntel) // SL-10625...throttle early, throttle often with Intel
-					{
-						// Frame/draw throttling
-						U64 elapsed_time = LLTimer::getTotalTime() - last_call;
-						if (elapsed_time < mMinMicroSecPerFrame)
-						{
-							LL_RECORD_BLOCK_TIME(FTM_SLEEP);
-							// llclamp for when time function gets funky
-							U64 sleep_time = llclamp(mMinMicroSecPerFrame - elapsed_time, (U64)1, (U64)1e6);
-							micro_sleep(sleep_time);
-						}
-					}
-					last_call = LLTimer::getTotalTime();
-				}
-
 				pingMainloopTimeout("Main:Snapshot");
 				LLFloaterSnapshot::update(); // take snapshots
 					LLFloaterOutfitSnapshot::update();