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--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%404020
This commit is contained in:
Sam Lantinga 2009-10-10 09:22:11 +00:00
parent 42b81dd3ee
commit 0d0229d870

View file

@ -90,7 +90,7 @@
/** @name Basic data types */
/*@{*/
typedef enum SDL_bool {
typedef enum {
SDL_FALSE = 0,
SDL_TRUE = 1
} SDL_bool;