1
0
Fork 0
forked from len0rd/rockbox

Fix wrong data type.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19261 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2008-11-29 08:19:00 +00:00
parent 88270f7622
commit e8f22ac6fd

View file

@ -324,7 +324,7 @@ static const fb_data color[9] = {
LCD_RGBPACK(255, 191, 0), LCD_RGBPACK(255, 0, 0), LCD_RGBPACK(0, 0, 0)
};
#else /* greyscale */
static const fb_data color[9] = {
static const unsigned char color[9] = {
255, 223, 191, 159, 128, 96, 64, 32, 0
};
#endif