use 'U' suffix on constants instead of (unsigned int) cast.

This commit is contained in:
Ozkan Sezer
2019-08-30 11:35:20 +03:00
parent d52080c0ab
commit 9c8e403f6b
3 changed files with 4 additions and 4 deletions

View File

@@ -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 { \