Undeeded SDL_delay() in OS X.
This commit is contained in:
@@ -803,9 +803,12 @@ static void GameLoop()
|
|||||||
*/
|
*/
|
||||||
SCREENMAN->Draw();
|
SCREENMAN->Draw();
|
||||||
|
|
||||||
|
/* This is unneeded in OS X. The OS handles all of this for us. */
|
||||||
|
#if !defined(DARWIN)
|
||||||
if(g_bHasFocus)
|
if(g_bHasFocus)
|
||||||
SDL_Delay( 1 ); // give some time to other processes and threads
|
SDL_Delay( 1 ); // give some time to other processes and threads
|
||||||
else
|
else
|
||||||
SDL_Delay( 10 );// give some time to other processes and threads
|
SDL_Delay( 10 );// give some time to other processes and threads
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user