summaryrefslogtreecommitdiffhomepage
path: root/src/gestures.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-09-21 15:31:26 +0200
committerraysan5 <[email protected]>2021-09-21 15:31:26 +0200
commita09311a8fc5e8111b046adb4fd5c96a0d3f3b34b (patch)
tree5b16fff531577ccbae7251f9daccd1226cc687ea /src/gestures.h
parentc96de3a23a616030c787daf8df3593ae0f8a7aaf (diff)
downloadraylib-a09311a8fc5e8111b046adb4fd5c96a0d3f3b34b.tar.gz
raylib-a09311a8fc5e8111b046adb4fd5c96a0d3f3b34b.zip
Tweaks
Diffstat (limited to 'src/gestures.h')
-rw-r--r--src/gestures.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gestures.h b/src/gestures.h
index 77c95c08..9cf53536 100644
--- a/src/gestures.h
+++ b/src/gestures.h
@@ -64,7 +64,7 @@
// Boolean type
#if defined(__STDC__) && __STDC_VERSION__ >= 199901L
#include <stdbool.h>
-#elif !defined(__cplusplus) && !defined(bool)
+#elif !defined(__cplusplus) && !defined(bool) && !defined(RL_BOOL_TYPE)
typedef enum bool { false, true } bool;
#endif