diff options
| author | Szymon Dziok <b0hoon@o2.pl> | 2014-02-25 20:09:57 +0000 |
|---|---|---|
| committer | Szymon Dziok <b0hoon@o2.pl> | 2014-03-27 19:50:48 +0000 |
| commit | f8d367be947089ee0dc38d5c52fe6b40215474d2 (patch) | |
| tree | ba1454a1cfe8bd07f37d52a8d9207543cb043b8b /apps | |
| parent | 679d1e799c467d45befc272c0feb961f3343dc9a (diff) | |
| download | rockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.zip rockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.tar.gz rockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.tar.bz2 rockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.tar.xz | |
Add Cabbiev2 port for 128x96x16 targets (Samsung YH-820), made by me.
Change-Id: I21c408e8c25c42a1e6c3d3e44c0999ae85d73154
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/settings_list.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index 648cb42..af83866 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -215,7 +215,8 @@ static const char graphic_numeric[] = "graphic,numeric"; #elif LCD_HEIGHT <= 80 #define DEFAULT_FONT_HEIGHT 11 #define DEFAULT_FONTNAME "11-Sazanami-Mincho" -#elif (LCD_HEIGHT == 96) && (LCD_WIDTH == 96) /* sandisk sansa clip zip */ +/* sandisk sansa clip zip and samsung yh-820 */ +#elif (LCD_HEIGHT == 96) && ((LCD_WIDTH == 96) || (LCD_WIDTH == 128)) #define DEFAULT_FONT_HEIGHT 8 #define DEFAULT_FONTNAME "08-Rockfont" #elif LCD_HEIGHT <= 220 |