From a8876b884d6a916497e534d0b241734a79f46db9 Mon Sep 17 00:00:00 2001 From: Sean Barrett Date: Sat, 2 Apr 2016 03:40:42 -0700 Subject: [PATCH] fix _WIN32 if STB_THREADS --- stb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb.h b/stb.h index 11350ba..89aac37 100644 --- a/stb.h +++ b/stb.h @@ -11205,7 +11205,7 @@ int stb_arith_decode_byte(stb_arith *a) // Threads // -#ifndef WIN32 +#ifndef _WIN32 #ifdef STB_THREADS #error "threads not implemented except for Windows" #endif