aboutsummaryrefslogtreecommitdiff
path: root/src/raylib.h
diff options
context:
space:
mode:
authorJoshua Reisenauer <kd7tck@msn.com>2016-06-01 20:09:00 -0700
committerJoshua Reisenauer <kd7tck@msn.com>2016-06-01 20:09:00 -0700
commit90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33 (patch)
treea94a3217c8ea31c569cf7924c46294193269eb58 /src/raylib.h
parent78b4494e2bcf6922cac331008fd6235583ed7a27 (diff)
downloadraylib-90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33.tar.gz
raylib-90e1ed2b5e54a9b6c69be3dd2b71d1e4f3632c33.zip
mod player added
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 456f427d..59266a0c 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -261,8 +261,9 @@
//----------------------------------------------------------------------------------
#ifndef __cplusplus
// Boolean type
- #ifndef true
+ #if !defined(_STDBOOL_H)
typedef enum { false, true } bool;
+ #define _STDBOOL_H
#endif
#endif