Mercurial > sdl-ios-xcode
changeset 4367:2d00ed718720 SDL-1.2
Fixed compiler warnings
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 19 Oct 2009 10:09:58 +0000 |
parents | f00e178dfc9e |
children | 4c088d2b29eb |
files | src/video/SDL_blit.h |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/SDL_blit.h Mon Oct 19 10:03:16 2009 +0000 +++ b/src/video/SDL_blit.h Mon Oct 19 10:09:58 2009 +0000 @@ -166,7 +166,7 @@ } while(0) /* Assemble R-G-B values into a specified pixel format and store them */ -#ifdef __NDS__ // FIXME +#ifdef __NDS__ /* FIXME */ #define PIXEL_FROM_RGB(Pixel, fmt, r, g, b) \ { \ Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \ @@ -180,7 +180,7 @@ ((g>>fmt->Gloss)<<fmt->Gshift)| \ ((b>>fmt->Bloss)<<fmt->Bshift); \ } -#endif // __NDS__ FIXME +#endif /* __NDS__ FIXME */ #define RGB565_FROM_RGB(Pixel, r, g, b) \ { \ Pixel = ((r>>3)<<11)|((g>>2)<<5)|(b>>3); \ @@ -330,7 +330,7 @@ } while(0) /* FIXME: this isn't correct, especially for Alpha (maximum != 255) */ -#ifdef __NDS__ // FIXME +#ifdef __NDS__ /* FIXME */ #define PIXEL_FROM_RGBA(Pixel, fmt, r, g, b, a) \ { \ Pixel = ((r>>fmt->Rloss)<<fmt->Rshift)| \ @@ -346,7 +346,7 @@ ((b>>fmt->Bloss)<<fmt->Bshift)| \ ((a>>fmt->Aloss)<<fmt->Ashift); \ } -#endif // __NDS__ FIXME +#endif /* __NDS__ FIXME */ #define ASSEMBLE_RGBA(buf, bpp, fmt, r, g, b, a) \ { \ switch (bpp) { \