From 20939ee8e1074466f219876a94f0c5eaf92c45d2 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 13 May 2004 20:14:32 +0000 Subject: [PATCH] fix Windows compile --- stepmania/src/RageSounds.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/RageSounds.cpp b/stepmania/src/RageSounds.cpp index 43abc7aac7..35da44e8e0 100644 --- a/stepmania/src/RageSounds.cpp +++ b/stepmania/src/RageSounds.cpp @@ -10,6 +10,7 @@ #include "PrefsManager.h" #include "RageDisplay.h" #include "AnnouncerManager.h" +#include "SDL_utils.h" RageSounds *SOUND = NULL; @@ -262,7 +263,7 @@ int MusicThread_start( void *p ) { while( !g_Shutdown ) { - usleep(10000); + SDL_Delay( 10 ); StartQueuedSounds(); }