From e981d45b93d19ac577adb215cf1339e89a76b174 Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Fri, 4 Sep 2009 14:33:25 +0000 Subject: git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@28959 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/cdriso.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index a65c697a..66c9f3aa 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -128,7 +128,10 @@ static void *playthread(void *param) while (playing) { #ifdef _WIN32 - Sleep(1); + // Sleep a little longer under Windows as the music tends to + // "skip" a lot with Windows version of spuEternal if the + // stream is fed too fast. The detailed reason is unknown. + Sleep(80); #else usleep(1); #endif -- cgit v1.2.3