Attempt to avod build errors for Mingw
authortwinaphex <libretro@gmail.com>
Sun, 1 Nov 2015 09:25:51 +0000 (10:25 +0100)
committertwinaphex <libretro@gmail.com>
Sun, 1 Nov 2015 09:25:51 +0000 (10:25 +0100)
libpcsxcore/cdriso.c

index 09aed17..46ee020 100644 (file)
@@ -30,7 +30,7 @@
 #include <process.h>
 #include <windows.h>
 #define strcasecmp _stricmp
-#define usleep(x) Sleep((x) / 1000)
+#define usleep(x) (Sleep((x) / 1000))
 #else
 #include <pthread.h>
 #include <sys/time.h>
@@ -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;