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:
parent
88270f7622
commit
e8f22ac6fd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue