Mercurial > sdl-ios-xcode
diff 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 |
line wrap: on
line diff
--- a/src/video/SDL_blit_N.c Sun Feb 26 19:30:21 2006 +0000 +++ b/src/video/SDL_blit_N.c Sun Feb 26 19:37:40 2006 +0000 @@ -835,10 +835,10 @@ #endif /* This is now endian dependent */ -#if ( SDL_BYTEORDER == SDL_LIL_ENDIAN ) +#if SDL_BYTEORDER == SDL_LIL_ENDIAN #define HI 1 #define LO 0 -#else /* ( SDL_BYTEORDER == SDL_BIG_ENDIAN ) */ +#else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ #define HI 0 #define LO 1 #endif