diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2008-09-03 17:50:21 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2008-09-03 17:50:21 +0000 |
| commit | ca0de82cec434fcd4af827ff1a1d473667249338 (patch) | |
| tree | 72f53cfd35a8dbd6ec90a50514b7755ede357499 /apps | |
| parent | f3d5700df79adf73b22f1961f4bf10fda0084444 (diff) | |
| download | rockbox-ca0de82cec434fcd4af827ff1a1d473667249338.zip rockbox-ca0de82cec434fcd4af827ff1a1d473667249338.tar.gz rockbox-ca0de82cec434fcd4af827ff1a1d473667249338.tar.bz2 rockbox-ca0de82cec434fcd4af827ff1a1d473667249338.tar.xz | |
Fix default font names in the settings code (FS #9358 by Thomas Schott).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18397 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_list.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index bfa1901..0addf5c 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -174,15 +174,15 @@ static const char graphic_numeric[] = "graphic,numeric"; #ifdef HAVE_LCD_BITMAP #if LCD_HEIGHT <= 64 - #define DEFAULT_FONTNAME "rockfont-8" + #define DEFAULT_FONTNAME "08-Rockfont" #elif LCD_HEIGHT <= 80 - #define DEFAULT_FONTNAME "Sazanami-Mincho-Regular-11" + #define DEFAULT_FONTNAME "11-Sazanami-Mincho" #elif LCD_HEIGHT <= 220 - #define DEFAULT_FONTNAME "helvR10" + #define DEFAULT_FONTNAME "12-Adobe-Helvetica" #elif LCD_HEIGHT <= 320 - #define DEFAULT_FONTNAME "helvR12" + #define DEFAULT_FONTNAME "15-Adobe-Helvetica" #else - #define DEFAULT_FONTNAME "helvR10" + #define DEFAULT_FONTNAME "12-Adobe-Helvetica" #endif #else |