Remove 'reserved identifier' warning
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
diff --git a/src/video/SDL_blit.h b/src/video/SDL_blit.h
index 53222e4..e00ba68 100644
--- a/src/video/SDL_blit.h
+++ b/src/video/SDL_blit.h
@@ -269,18 +269,18 @@ do { \
{ \
switch (bpp) { \
case 1: { \
- Uint8 _Pixel; \
+ Uint8 _pixel; \
\
- PIXEL_FROM_RGB(_Pixel, fmt, r, g, b); \
- *((Uint8 *)(buf)) = _Pixel; \
+ PIXEL_FROM_RGB(_pixel, fmt, r, g, b); \
+ *((Uint8 *)(buf)) = _pixel; \
} \
break; \
\
case 2: { \
- Uint16 _Pixel; \
+ Uint16 _pixel; \
\
- PIXEL_FROM_RGB(_Pixel, fmt, r, g, b); \
- *((Uint16 *)(buf)) = _Pixel; \
+ PIXEL_FROM_RGB(_pixel, fmt, r, g, b); \
+ *((Uint16 *)(buf)) = _pixel; \
} \
break; \
\
@@ -298,10 +298,10 @@ do { \
break; \
\
case 4: { \
- Uint32 _Pixel; \
+ Uint32 _pixel; \
\
- PIXEL_FROM_RGB(_Pixel, fmt, r, g, b); \
- *((Uint32 *)(buf)) = _Pixel; \
+ PIXEL_FROM_RGB(_pixel, fmt, r, g, b); \
+ *((Uint32 *)(buf)) = _pixel; \
} \
break; \
} \