From 0918725cc124aaf47d83d8dcd4f457f2e1e93456 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 28 Feb 2003 08:44:52 +0000 Subject: [PATCH] delay more if we don't have focus --- stepmania/src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 52519abc57..a77e532e18 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -591,6 +591,6 @@ static void GameLoop() if(g_bHasFocus) SDL_Delay( 0 ); // give some time to other processes and threads else - SDL_Delay( 2 ); // give more time to other processes and threads, but not so much that we skip sound + SDL_Delay( 5 ); // give some time to other processes and threads } }