summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2017-02-11 23:34:41 +0100
committerraysan5 <[email protected]>2017-02-11 23:34:41 +0100
commit05f039f85fb43f9ae4598747a4d9c6770ec5774b (patch)
tree6f8254252476652dfa9f3022c25873ec700f30c6 /src/raylib.h
parentafcd748fdf2d4f379f7a3be1706c1d6cd2ff504d (diff)
downloadraylib-05f039f85fb43f9ae4598747a4d9c6770ec5774b.tar.gz
raylib-05f039f85fb43f9ae4598747a4d9c6770ec5774b.zip
Corrected issue with OpenAL being 'keg only' on OSX
Also reviewed issue with stdbool when compiling with clang
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/raylib.h b/src/raylib.h
index a5849180..800ab2be 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -296,13 +296,9 @@
//----------------------------------------------------------------------------------
#ifndef __cplusplus
// Boolean type
- #ifndef __APPLE__
- #if !defined(_STDBOOL_H)
- typedef enum { false, true } bool;
- #define _STDBOOL_H
- #endif
- #else
- #include <stdbool.h>
+ #if !defined(_STDBOOL_H)
+ typedef enum { false, true } bool;
+ #define _STDBOOL_H
#endif
#endif