From 7019dd1bc3bd75274d2cce5ca50492dc5d76261f Mon Sep 17 00:00:00 2001 From: Lam Wei Lun Date: Sun, 26 Apr 2026 04:09:20 +0800 Subject: [PATCH] Adds a missing macro definition check --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raylib.h b/src/raylib.h index bdca64329..825867a70 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -203,7 +203,7 @@ // Types and Structures Definition //---------------------------------------------------------------------------------- // Boolean type -#if (defined(__STDC__) && __STDC_VERSION__ >= 199901L) || (defined(_MSC_VER) && _MSC_VER >= 1800) +#if (defined(__STDC__) && (defined(__STDC_VERSION__) && __STDC_VERSION__) >= 199901L) || (defined(_MSC_VER) && _MSC_VER >= 1800) #include #elif !defined(__cplusplus) && !defined(bool) typedef enum bool { false = 0, true = !false } bool;