summaryrefslogtreecommitdiff
path: root/apps/gui/skin_engine/skin_buffer.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-05-12 09:31:40 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-05-12 09:31:40 +0000
commitd6dbfef4520475a5275e0bc84c917dbb06724b54 (patch)
tree81268860f1b8bbad3fdaa32a3bc7cc8324ca0d1d /apps/gui/skin_engine/skin_buffer.c
parent35fd1e4e9933cc3d448cd6415f43f42f0289cd61 (diff)
downloadrockbox-d6dbfef4520475a5275e0bc84c917dbb06724b54.tar.gz
rockbox-d6dbfef4520475a5275e0bc84c917dbb06724b54.zip
Borrow another 10K to make sure multifont will have room on even the smallerst screens
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25962 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/skin_engine/skin_buffer.c')
-rw-r--r--apps/gui/skin_engine/skin_buffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/gui/skin_engine/skin_buffer.c b/apps/gui/skin_engine/skin_buffer.c
index a15ad10bee..d503b83e42 100644
--- a/apps/gui/skin_engine/skin_buffer.c
+++ b/apps/gui/skin_engine/skin_buffer.c
@@ -31,6 +31,7 @@
31#include "wps_internals.h" 31#include "wps_internals.h"
32#include "skin_tokens.h" 32#include "skin_tokens.h"
33#include "skin_buffer.h" 33#include "skin_buffer.h"
34#include "skin_fonts.h"
34 35
35/* skin buffer management. 36/* skin buffer management.
36 * This module is used to allocate space in a single global skin buffer for 37 * This module is used to allocate space in a single global skin buffer for
@@ -66,7 +67,7 @@
66#endif 67#endif
67 68
68 69
69#define SKIN_BUFFER_SIZE (MAIN_BUFFER + REMOTE_BUFFER) + \ 70#define SKIN_BUFFER_SIZE (MAIN_BUFFER + REMOTE_BUFFER + SKIN_FONT_SIZE) + \
70 (WPS_MAX_TOKENS * sizeof(struct wps_token)) 71 (WPS_MAX_TOKENS * sizeof(struct wps_token))
71#endif 72#endif
72 73