equal
deleted
inserted
replaced
833 /* Feature 1 is has-MMX */ |
833 /* Feature 1 is has-MMX */ |
834 #define GetBlitFeatures() ((Uint32)(SDL_HasMMX() ? 1 : 0)) |
834 #define GetBlitFeatures() ((Uint32)(SDL_HasMMX() ? 1 : 0)) |
835 #endif |
835 #endif |
836 |
836 |
837 /* This is now endian dependent */ |
837 /* This is now endian dependent */ |
838 #if ( SDL_BYTEORDER == SDL_LIL_ENDIAN ) |
838 #if SDL_BYTEORDER == SDL_LIL_ENDIAN |
839 #define HI 1 |
839 #define HI 1 |
840 #define LO 0 |
840 #define LO 0 |
841 #else /* ( SDL_BYTEORDER == SDL_BIG_ENDIAN ) */ |
841 #else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ |
842 #define HI 0 |
842 #define HI 0 |
843 #define LO 1 |
843 #define LO 1 |
844 #endif |
844 #endif |
845 |
845 |
846 #if SDL_HERMES_BLITTERS |
846 #if SDL_HERMES_BLITTERS |