diff options
author | Brandon Low <lostlogic@rockbox.org> | 2007-06-17 23:12:39 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@rockbox.org> | 2007-06-17 23:12:39 +0000 |
commit | 2d0cb077c3cff7ac2269d1976395d9806f373335 (patch) | |
tree | 7d79d6bc451fd4375d54747f0e4ba3270efd8eb8 | |
parent | f8682a032ed459eeb8b4865cba73706e24734b55 (diff) | |
download | rockbox-2d0cb077c3cff7ac2269d1976395d9806f373335.tar.gz rockbox-2d0cb077c3cff7ac2269d1976395d9806f373335.zip |
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
-rw-r--r-- | apps/filetypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 89933c8774..ed8a5bc9e7 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -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; |