Shrink binsize by using shorts instead of ints for colors

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13660 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Brandon Low 2007-06-17 23:12:39 +00:00
parent f8682a032e
commit 2d0cb077c3

View file

@ -126,7 +126,7 @@ static struct file_type filetypes[MAX_FILETYPES];
static int custom_filetype_icons[MAX_FILETYPES];
static bool custom_icons_loaded = false;
#ifdef HAVE_LCD_COLOR
static int custom_colors[MAX_FILETYPES];
static short custom_colors[MAX_FILETYPES];
#endif
static int filetype_count = 0;
static unsigned char heighest_attr = 0;