summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Louden <paulthenerd@gmail.com>2007-06-18 18:43:11 +0000
committerPaul Louden <paulthenerd@gmail.com>2007-06-18 18:43:11 +0000
commit4cb1072ccef0e9958f926cf9d120ceb63c74e42a (patch)
treeb0ad957b86a0217c8e1a7d41933ea1f59f933beb
parent1b947de1adf91adf311876f8c7f1a3e7cd7200a7 (diff)
downloadrockbox-4cb1072ccef0e9958f926cf9d120ceb63c74e42a.tar.gz
rockbox-4cb1072ccef0e9958f926cf9d120ceb63c74e42a.zip
Hopefully fix FS#7323. Store colors as fb_data.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13667 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/filetypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index ed8a5bc9e7..303d4863b9 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -126,7 +126,7 @@ static struct file_type filetypes[MAX_FILETYPES];
126static int custom_filetype_icons[MAX_FILETYPES]; 126static int custom_filetype_icons[MAX_FILETYPES];
127static bool custom_icons_loaded = false; 127static bool custom_icons_loaded = false;
128#ifdef HAVE_LCD_COLOR 128#ifdef HAVE_LCD_COLOR
129static short custom_colors[MAX_FILETYPES]; 129static fb_data custom_colors[MAX_FILETYPES];
130#endif 130#endif
131static int filetype_count = 0; 131static int filetype_count = 0;
132static unsigned char heighest_attr = 0; 132static unsigned char heighest_attr = 0;