mirror of
https://github.com/encounter/SDL.git
synced 2025-12-17 08:57:01 +00:00
use 'U' suffix on constants instead of (unsigned int) cast.
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, (unsigned int)0xf7de)
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xf7deU)
|
||||
|
||||
#define ALPHA_BLIT16_555_50(to, from, length, bpp, alpha) \
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, (unsigned int)0xfbde)
|
||||
ALPHA_BLIT16_50(to, from, length, bpp, alpha, 0xfbdeU)
|
||||
|
||||
#define CHOOSE_BLIT(blitter, alpha, fmt) \
|
||||
do { \
|
||||
|
||||
Reference in New Issue
Block a user