bsnow: use uchar instead of char to avoid narrowing conversion warnings.

This commit is contained in:
Jérôme Duval 2013-04-29 21:44:01 +02:00
parent cd749a7652
commit 2e00579938
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
#define TRAN 0xFF
#define WHIT 0x3F
const char gFlakeBits[NUM_PATTERNS][64] = {
const uchar gFlakeBits[NUM_PATTERNS][64] = {
{
TRAN, TRAN, TRAN, TRAN, TRAN, TRAN, TRAN, TRAN,
TRAN, TRAN, WHIT, TRAN, WHIT, TRAN, TRAN, TRAN,

View File

@ -6,7 +6,7 @@
#define PAT_HOTSPOT 3,3
extern const char gFlakeBits[NUM_PATTERNS][64];
extern const uchar gFlakeBits[NUM_PATTERNS][64];
#endif