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:
parent
775b95c7d3
commit
e06faa0480
1 changed files with 4 additions and 0 deletions
|
@ -30,7 +30,11 @@
|
|||
/* max static loadable font buffer size */
|
||||
#ifndef MAX_FONT_SIZE
|
||||
#if LCD_HEIGHT > 64
|
||||
#if MEM > 2
|
||||
#define MAX_FONT_SIZE 60000
|
||||
#else
|
||||
#define MAX_FONT_SIZE 10000
|
||||
#endif
|
||||
#else
|
||||
#define MAX_FONT_SIZE 4000
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue