When N2935 is implemented, the enum breaks compilation. Use a #define of the SDL booleans instead.
@@ -31,11 +31,9 @@
#include <stdint.h>
-typedef enum
-{
- false,
- true
-} bool;
+#define bool SDL_bool
+#define true SDL_TRUE
+#define false SDL_FALSE
typedef uint32_t uint32;
typedef uint64_t uint64;