Mercurial > sdl-ios-xcode
comparison src/video/SDL_blit_N.c @ 1443:9ebbbb4ae53b
Fixed some OpenWatcom warnings
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 26 Feb 2006 19:37:40 +0000 |
parents | 5f52867ba65c |
children | dc6b59e925a2 |
comparison
equal
deleted
inserted
replaced
1442:e3242177fe4a | 1443:9ebbbb4ae53b |
---|---|
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 |