]> git.stg.codes - stg.git/blobdiff - stglibs/ia.lib/ia.cpp
Replace deprecated usleep with POSIX-compliant nanosleep
[stg.git] / stglibs / ia.lib / ia.cpp
index 9883dbbb8d276dbc2cb30db284b1a2c257f6564f..abecef09f552fa4ff4f8a949402c4bc313e65429 100644 (file)
@@ -69,7 +69,7 @@ static int a = 0;
 
 if (a == 0)
     {
-    usleep(50000);
+    Sleep(50);
     a = 1;
     }
 
@@ -82,7 +82,9 @@ return NULL;
 //---------------------------------------------------------------------------
 void Sleep(int ms)
 {
-usleep(ms * 1000);
+long long res = ms * 1000000;
+struct timespec ts = {res / 1000000000, res % 1000000000};
+nanosleep(&ts, NULL);
 }
 //---------------------------------------------------------------------------
 long GetTickCount()