We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d51205b commit e490364Copy full SHA for e490364
src/RageDisplay.cpp
@@ -927,11 +927,6 @@ void RageDisplay::FrameLimitBeforeVsync( int iFPS )
927
if( !HOOKS->AppHasFocus() )
928
iDelayMicroseconds = max( iDelayMicroseconds, 10000 ); // give some time to other processes and threads
929
930
-#if defined(_WINDOWS)
931
- /* In Windows, always explicitly give up a minimum amount of CPU for other threads. */
932
- iDelayMicroseconds = max( iDelayMicroseconds, 1000 );
933
-#endif
934
-
935
if( iDelayMicroseconds > 0 )
936
usleep( iDelayMicroseconds );
937
}
0 commit comments