From 0b22378211252f1f0e71ec606889bac6cfd6d467 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 6 Mar 2003 23:08:21 +0000 Subject: [PATCH] give a bit more time when 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 2c27149792..05ea6ea5b9 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -594,6 +594,6 @@ static void GameLoop() if(g_bHasFocus) SDL_Delay( 0 ); // give some time to other processes and threads else - SDL_Delay( 5 ); // give some time to other processes and threads + SDL_Delay( 10 );// give some time to other processes and threads } }