diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2004-08-27 08:16:08 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2004-08-27 08:16:08 +0000 |
| commit | 861306d33085fd2b21445c88b38f2b3c00535c5d (patch) | |
| tree | c23f2eca4502ec4ca5d9b4b74dceaf6e9711eeab | |
| parent | b4920271ba414d1a91e2209f3b07c4506980ba3b (diff) | |
| download | rockbox-861306d33085fd2b21445c88b38f2b3c00535c5d.zip rockbox-861306d33085fd2b21445c88b38f2b3c00535c5d.tar.gz rockbox-861306d33085fd2b21445c88b38f2b3c00535c5d.tar.bz2 rockbox-861306d33085fd2b21445c88b38f2b3c00535c5d.tar.xz | |
By reducing the font buffer to 4000 bytes from 9000, we get 5000 fresh bytes
to buffer mp3 with! Only 3 out of 44 fonts that fit within 9000 are bigger
than 4000, leaving us with 41 fonts that fit.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5019 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/font.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/font.h b/firmware/export/font.h index eeb8a36..c28bf57 100644 --- a/firmware/export/font.h +++ b/firmware/export/font.h @@ -28,7 +28,7 @@ /* max static loadable fonts buffer*/ #ifndef MAX_FONT_SIZE -#define MAX_FONT_SIZE 9000 /* max total fontsize allocation*/ +#define MAX_FONT_SIZE 4000 /* max total fontsize allocation*/ #endif /* |