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
This commit is contained in:
Jens Arnold 2008-02-27 08:04:13 +00:00
parent 3987166a0a
commit 43cf1d509b

View file

@ -190,9 +190,12 @@ static const char graphic_numeric[] = "graphic,numeric";
#ifdef HAVE_LCD_COLOR #ifdef HAVE_LCD_COLOR
#define DEFAULT_ICONSET "tango_small" #define DEFAULT_ICONSET "tango_small"
#define DEFAULT_VIEWERS_ICONSET "tango_small_viewers" #define DEFAULT_VIEWERS_ICONSET "tango_small_viewers"
#else #elif LCD_DEPTH >= 2
#define DEFAULT_ICONSET "tango_small_mono" #define DEFAULT_ICONSET "tango_small_mono"
#define DEFAULT_VIEWERS_ICONSET "tango_small_viewers_mono" #define DEFAULT_VIEWERS_ICONSET "tango_small_viewers_mono"
#else /* monochrome */
#define DEFAULT_ICONSET ""
#define DEFAULT_VIEWERS_ICONSET ""
#endif #endif
#define DEFAULT_THEME_FOREGROUND LCD_RGBPACK(0xce, 0xcf, 0xce) #define DEFAULT_THEME_FOREGROUND LCD_RGBPACK(0xce, 0xcf, 0xce)