version 0.7
[zeRace] / sdl.h
diff --git a/sdl.h b/sdl.h
index 193d175..26245c5 100644 (file)
--- a/sdl.h
+++ b/sdl.h
@@ -4,6 +4,19 @@
 #include <SDL.h>
 #include <SDL_image.h>
 
+/* endianness setup */
+#if SDL_BYTEORDER == SDL_BIG_ENDIAN
+  #define RMASK 0xff000000
+  #define GMASK 0x00ff0000
+  #define BMASK 0x0000ff00
+  #define AMASK 0x000000ff
+#else
+  #define RMASK 0x000000ff
+  #define GMASK 0x0000ff00
+  #define BMASK 0x00ff0000
+  #define AMASK 0xff000000
+#endif
+
 void print(SDL_Surface *dst,int x,int y,unsigned char *text);
 void readstring(SDL_Surface *dst,int x,int y,unsigned char *text,int limit);
 Uint32 getpixel(SDL_Surface *surface, int x, int y);