changeset 534 | 1ea658a3dd52 |
parent 463 | bf7389310d27 |
child 654 | e92bcf2573cb |
--- a/include/SDL_types.h Sun Oct 20 00:15:33 2002 +0000 +++ b/include/SDL_types.h Tue Oct 22 21:35:49 2002 +0000 @@ -89,6 +89,11 @@ enums having the size of an int must be enabled. This is "-b" for Borland C/C++ and "-ei" for Watcom C/C++ (v11). */ +/* Enable enums always int in CodeWarrior (for MPW use "-enum int") */ +#ifdef __MWERKS__ +#pragma enumsalwaysint on +#endif + typedef enum { DUMMY_ENUM_VALUE } SDL_DUMMY_ENUM;