diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2008-02-23 04:15:08 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2008-02-23 04:15:08 +0000 |
| commit | b2366c8fdcabe7bbe478848ae9a8d887bdf4625b (patch) | |
| tree | d2cdfd059044404d26bb63b64dd2778534f97ad5 /apps | |
| parent | aa269621047136db9960634057a7dac1d3981e5d (diff) | |
| download | rockbox-b2366c8fdcabe7bbe478848ae9a8d887bdf4625b.zip rockbox-b2366c8fdcabe7bbe478848ae9a8d887bdf4625b.tar.gz rockbox-b2366c8fdcabe7bbe478848ae9a8d887bdf4625b.tar.bz2 rockbox-b2366c8fdcabe7bbe478848ae9a8d887bdf4625b.tar.xz | |
Default to helvR10 for new ports that do not yet have a default theme defined.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16378 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_list.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index df01eb5..5e5417a 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -165,6 +165,8 @@ static const char graphic_numeric[] = "graphic,numeric"; #endif /* Default theme settings */ +#define DEFAULT_WPSNAME "cabbiev2" + #ifdef HAVE_LCD_BITMAP #if LCD_HEIGHT <= 64 @@ -177,8 +179,10 @@ static const char graphic_numeric[] = "graphic,numeric"; #define DEFAULT_FONTNAME "helvR12" #elif LCD_HEIGHT <= 320 #define DEFAULT_FONTNAME "helvR14" +#else + #define DEFAULT_FONTNAME "helvR10" #endif - #define DEFAULT_WPSNAME "cabbiev2" + #else #define DEFAULT_FONTNAME "" #define DEFAULT_WPSNAME "" |