summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-02-27 08:04:13 +0000
committerJens Arnold <amiconn@rockbox.org>2008-02-27 08:04:13 +0000
commit43cf1d509b85d3055d8aa53147de6e9389acadbc (patch)
tree0d283ba143d18b8a53435c70aae365fc978dde7c
parent3987166a0a3be61b8021dfe585804970f21f35da (diff)
downloadrockbox-43cf1d509b85d3055d8aa53147de6e9389acadbc.tar.gz
rockbox-43cf1d509b85d3055d8aa53147de6e9389acadbc.zip
Fix default iconsets for targets with small mono LCDs (Archos Recorders and Ondios).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16431 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/settings_list.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 15c7814a70..7153675c34 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -190,9 +190,12 @@ static const char graphic_numeric[] = "graphic,numeric";
#ifdef HAVE_LCD_COLOR
#define DEFAULT_ICONSET "tango_small"
#define DEFAULT_VIEWERS_ICONSET "tango_small_viewers"
-#else
+#elif LCD_DEPTH >= 2
#define DEFAULT_ICONSET "tango_small_mono"
#define DEFAULT_VIEWERS_ICONSET "tango_small_viewers_mono"
+#else /* monochrome */
+ #define DEFAULT_ICONSET ""
+ #define DEFAULT_VIEWERS_ICONSET ""
#endif
#define DEFAULT_THEME_FOREGROUND LCD_RGBPACK(0xce, 0xcf, 0xce)