From bc357da2ae5dada31a45517ffde8549fb47ce7cf Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 23 Feb 2008 13:12:08 +0000 Subject: Small fixes for icon behaviour on the Player: Read viewer icon numbers from viewers.config, and correct the icon selection in icons.c. Now viewer supported filetypes get the mirrored question mark icon instead of no icon at all. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16389 a1c6a512-1295-4272-9138-f99709370657 --- apps/filetypes.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'apps/filetypes.c') diff --git a/apps/filetypes.c b/apps/filetypes.c index db463d7ff4..8427bc7450 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -325,7 +325,6 @@ static void read_config(char* config_file) filetypes[filetype_count].icon = Icon_Questionmark; heighest_attr++; /* get the icon */ -#ifdef HAVE_LCD_BITMAP s = e+1; if (*s == '*') filetypes[filetype_count].icon = atoi(s+1); @@ -333,9 +332,6 @@ static void read_config(char* config_file) filetypes[filetype_count].icon = Icon_NOICON; else if (*s >= '0' && *s <= '9') filetypes[filetype_count].icon = Icon_Last_Themeable + atoi(s); -#else - filetypes[filetype_count].icon = Icon_NOICON; -#endif filetype_count++; } } -- cgit v1.2.3