From d772434d29d71e88ddb26dd87ef3321b38ca0ccc Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sat, 10 Oct 2009 09:22:20 +0000 Subject: [PATCH] Made typedef for SDL_bool the same as the other typedefs. If this causes problems on any compiler, please report a bug to http://bugzilla.libsdl.org/ and include the platform and version of compiler you're using. --- include/SDL_stdinc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index 7ef8a3e3a..313a98ccf 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -94,7 +94,7 @@ #endif /* Basic data types */ -typedef enum SDL_bool +typedef enum { SDL_FALSE = 0, SDL_TRUE = 1