From 826b9023122af1ab860caf7f34e8dfdfcd0fd1f9 Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Wed, 24 May 2017 03:12:36 -0700 Subject: [PATCH] STOP ARGUING ABOUT THIS --- src/RageDisplay.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/RageDisplay.cpp b/src/RageDisplay.cpp index 292d00e35c..35f083b416 100644 --- a/src/RageDisplay.cpp +++ b/src/RageDisplay.cpp @@ -927,11 +927,6 @@ void RageDisplay::FrameLimitBeforeVsync( int iFPS ) if( !HOOKS->AppHasFocus() ) iDelayMicroseconds = max( iDelayMicroseconds, 10000 ); // give some time to other processes and threads -#if defined(_WINDOWS) - /* In Windows, always explicitly give up a minimum amount of CPU for other threads. */ - iDelayMicroseconds = max( iDelayMicroseconds, 1000 ); -#endif - if( iDelayMicroseconds > 0 ) usleep( iDelayMicroseconds ); }