From 7075c8391a25c9a2622e561633a53654302f7390 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. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404021 --- 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