Mercurial > sdl-ios-xcode
diff src/video/SDL_blit_A.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 | 84de7511f79f |
line wrap: on
line diff
--- a/src/video/SDL_blit_A.c Sun Feb 26 19:30:21 2006 +0000 +++ b/src/video/SDL_blit_A.c Sun Feb 26 19:37:40 2006 +0000 @@ -1468,10 +1468,11 @@ Uint32 sw, dw, s; sw = *(Uint32 *)srcp; dw = *(Uint32 *)dstp; - if(SDL_BYTEORDER == SDL_BIG_ENDIAN) - s = (prev_sw << 16) + (sw >> 16); - else - s = (prev_sw >> 16) + (sw << 16); +#if SDL_BYTEORDER == SDL_BIG_ENDIAN + s = (prev_sw << 16) + (sw >> 16); +#else + s = (prev_sw >> 16) + (sw << 16); +#endif prev_sw = sw; *(Uint32 *)dstp = BLEND2x16_50(dw, s, mask); dstp += 2; @@ -1482,10 +1483,11 @@ /* final pixel if any */ if(w) { Uint16 d = *dstp, s; - if(SDL_BYTEORDER == SDL_BIG_ENDIAN) - s = (Uint16)prev_sw; - else - s = (Uint16)(prev_sw >> 16); +#if SDL_BYTEORDER == SDL_BIG_ENDIAN + s = (Uint16)prev_sw; +#else + s = (Uint16)(prev_sw >> 16); +#endif *dstp = BLEND16_50(d, s, mask); srcp++; dstp++;