comparison include/SDL_stdinc.h @ 4303:9f66052ebb81 SDL-1.2

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.
author Sam Lantinga <slouken@libsdl.org>
date Sat, 10 Oct 2009 09:22:11 +0000
parents cd511a8560b7
children
comparison
equal deleted inserted replaced
4302:9c47984430f0 4303:9f66052ebb81
88 #define SDL_static_cast(type, expression) ((type)(expression)) 88 #define SDL_static_cast(type, expression) ((type)(expression))
89 #endif 89 #endif
90 90
91 /** @name Basic data types */ 91 /** @name Basic data types */
92 /*@{*/ 92 /*@{*/
93 typedef enum SDL_bool { 93 typedef enum {
94 SDL_FALSE = 0, 94 SDL_FALSE = 0,
95 SDL_TRUE = 1 95 SDL_TRUE = 1
96 } SDL_bool; 96 } SDL_bool;
97 97
98 typedef int8_t Sint8; 98 typedef int8_t Sint8;