Fixed some OpenWatcom warnings

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%401447
This commit is contained in:
Sam Lantinga 2006-02-26 19:37:40 +00:00
parent 46f459a736
commit 66a8f11c20
3 changed files with 13 additions and 11 deletions

View file

@ -835,10 +835,10 @@ static Uint32 GetBlitFeatures( void )
#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