# HG changeset patch # User Sam Lantinga # Date 1035322549 0 # Node ID 1ea658a3dd52065c6b4f106845b1ed81b30acf9c # Parent 263e4884f70deec971f33b4786709e931f7b719e Turn on enums always ints for CodeWarrior (thanks Darrell!) diff -r 263e4884f70d -r 1ea658a3dd52 include/SDL_types.h --- 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;