diff options
Diffstat (limited to 'release/html5')
| -rw-r--r-- | release/html5/libraylib.bc | bin | 721928 -> 723804 bytes | |||
| -rw-r--r-- | release/html5/raylib.h | 10 |
2 files changed, 7 insertions, 3 deletions
diff --git a/release/html5/libraylib.bc b/release/html5/libraylib.bc Binary files differindex edf5302e..5a26136b 100644 --- a/release/html5/libraylib.bc +++ b/release/html5/libraylib.bc diff --git a/release/html5/raylib.h b/release/html5/raylib.h index 19c67712..fee6aa91 100644 --- a/release/html5/raylib.h +++ b/release/html5/raylib.h @@ -268,9 +268,13 @@ //---------------------------------------------------------------------------------- #ifndef __cplusplus // Boolean type - #if !defined(_STDBOOL_H) - typedef enum { false, true } bool; - #define _STDBOOL_H + #ifndef __APPLE__ + #if !defined(_STDBOOL_H) + typedef enum { false, true } bool; + #define _STDBOOL_H + #endif + #else + #include <stdbool.h> #endif #endif |
