From 43cf1d509b85d3055d8aa53147de6e9389acadbc Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 27 Feb 2008 08:04:13 +0000 Subject: [PATCH] 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 --- apps/settings_list.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)