summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSzymon Dziok <b0hoon@o2.pl>2014-02-25 20:09:57 +0000
committerSzymon Dziok <b0hoon@o2.pl>2014-03-27 19:50:48 +0000
commitf8d367be947089ee0dc38d5c52fe6b40215474d2 (patch)
treeba1454a1cfe8bd07f37d52a8d9207543cb043b8b /apps
parent679d1e799c467d45befc272c0feb961f3343dc9a (diff)
downloadrockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.tar.gz
rockbox-f8d367be947089ee0dc38d5c52fe6b40215474d2.zip
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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index 648cb420cf..af83866356 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -215,7 +215,8 @@ static const char graphic_numeric[] = "graphic,numeric";
215#elif LCD_HEIGHT <= 80 215#elif LCD_HEIGHT <= 80
216 #define DEFAULT_FONT_HEIGHT 11 216 #define DEFAULT_FONT_HEIGHT 11
217 #define DEFAULT_FONTNAME "11-Sazanami-Mincho" 217 #define DEFAULT_FONTNAME "11-Sazanami-Mincho"
218#elif (LCD_HEIGHT == 96) && (LCD_WIDTH == 96) /* sandisk sansa clip zip */ 218/* sandisk sansa clip zip and samsung yh-820 */
219#elif (LCD_HEIGHT == 96) && ((LCD_WIDTH == 96) || (LCD_WIDTH == 128))
219 #define DEFAULT_FONT_HEIGHT 8 220 #define DEFAULT_FONT_HEIGHT 8
220 #define DEFAULT_FONTNAME "08-Rockfont" 221 #define DEFAULT_FONTNAME "08-Rockfont"
221#elif LCD_HEIGHT <= 220 222#elif LCD_HEIGHT <= 220