From c7a547da12f326b2578f801f3a65a5ead4d50b28 Mon Sep 17 00:00:00 2001 From: WolverinDEV Date: Sat, 6 Jul 2019 21:47:29 +0200 Subject: [PATCH] Fixed build paths for windows --- src/misc/spin_lock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/misc/spin_lock.h b/src/misc/spin_lock.h index c2b390f..03fb00a 100644 --- a/src/misc/spin_lock.h +++ b/src/misc/spin_lock.h @@ -13,7 +13,7 @@ class spin_lock { #ifdef WIN32 while(locked._My_flag > 0) { #else - while(locked._M_i) { + while(locked._M_i) { #endif //Yield when we're using this lock for a longer time, which we usually not doing if(round++ % 8 == 0)