ok, use a smaller font size on shorter display targets (3K instead of 10K)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25963 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2010-05-12 10:22:00 +00:00
parent d6dbfef452
commit f9736c0b63

View file

@ -32,9 +32,11 @@
#ifndef _SKINFONTS_H_
#define _SKINFONTS_H_
#define SKIN_FONT_SIZE 10000
#if LCD_HEIGHT > 160
#define SKIN_FONT_SIZE (1024*10)
#else
#define SKIN_FONT_SIZE (1024*3)
#endif
void skin_font_init(void);