mirror of
https://github.com/encounter/SDL.git
synced 2025-12-17 08:57:01 +00:00
Android: fix corresponding warnings
This commit is contained in:
@@ -295,10 +295,10 @@
|
||||
} while(0)
|
||||
|
||||
#define ALPHA_BLIT16_565_50(to, from, length, bpp, alpha) \
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xf7de)
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, (unsigned int)0xf7de)
|
||||
|
||||
#define ALPHA_BLIT16_555_50(to, from, length, bpp, alpha) \
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xfbde)
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, (unsigned int)0xfbde)
|
||||
|
||||
#define CHOOSE_BLIT(blitter, alpha, fmt) \
|
||||
do { \
|
||||
|
||||
@@ -35,8 +35,8 @@
|
||||
#define ACTION_DOWN 0
|
||||
#define ACTION_UP 1
|
||||
#define ACTION_MOVE 2
|
||||
#define ACTION_CANCEL 3
|
||||
#define ACTION_OUTSIDE 4
|
||||
/* #define ACTION_CANCEL 3 */
|
||||
/* #define ACTION_OUTSIDE 4 */
|
||||
#define ACTION_POINTER_DOWN 5
|
||||
#define ACTION_POINTER_UP 6
|
||||
|
||||
|
||||
Reference in New Issue
Block a user