From ce36c10b348009c13282048540d6d9c553bbcc96 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 1 Nov 2015 10:25:51 +0100 Subject: [PATCH] Attempt to avod build errors for Mingw --- libpcsxcore/cdriso.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libpcsxcore/cdriso.c b/libpcsxcore/cdriso.c index 09aed17d..46ee0207 100644 --- a/libpcsxcore/cdriso.c +++ b/libpcsxcore/cdriso.c @@ -30,7 +30,7 @@ #include #include #define strcasecmp _stricmp -#define usleep(x) Sleep((x) / 1000) +#define usleep(x) (Sleep((x) / 1000)) #else #include #include @@ -223,7 +223,9 @@ static void *playthread(void *param) do { ret = SPU_playCDDAchannel((short *)sndbuffer, s); if (ret == 0x7761) + { usleep(6 * 1000); + } } while (ret == 0x7761 && playing); // rearmed_wait } @@ -234,7 +236,9 @@ static void *playthread(void *param) // HACK: stop feeding data while emu is paused extern int stop; while (stop && playing) + { usleep(10000); + } now = GetTickCount(); osleep = t - now; -- 2.39.2