1
0
Fork 0
forked from len0rd/rockbox

Use a larger font cache on the targets that can afford the (quite small) RAM usage

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12620 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2007-03-05 08:32:35 +00:00
parent 775b95c7d3
commit e06faa0480

View file

@ -30,7 +30,11 @@
/* max static loadable font buffer size */ /* max static loadable font buffer size */
#ifndef MAX_FONT_SIZE #ifndef MAX_FONT_SIZE
#if LCD_HEIGHT > 64 #if LCD_HEIGHT > 64
#if MEM > 2
#define MAX_FONT_SIZE 60000
#else
#define MAX_FONT_SIZE 10000 #define MAX_FONT_SIZE 10000
#endif
#else #else
#define MAX_FONT_SIZE 4000 #define MAX_FONT_SIZE 4000
#endif #endif