mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-27 07:46:24 -04:00
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:
parent
3987166a0a
commit
43cf1d509b
1 changed files with 4 additions and 1 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue