summaryrefslogtreecommitdiff
path: root/firmware/export/font.h
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-28 08:36:13 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-28 08:36:13 +0000
commit8717c1eaa12ce23501d1c6e6103eaed310204243 (patch)
tree904e2ac64e5bf4388bad7307ff10cd9affd08358 /firmware/export/font.h
parent8c5eaa35ecd8b5239e2cb4848e29310daa6f4a88 (diff)
downloadrockbox-8717c1eaa12ce23501d1c6e6103eaed310204243.tar.gz
rockbox-8717c1eaa12ce23501d1c6e6103eaed310204243.zip
redo r24943. the font mappings are not needed once the skin is finished parsing so using the skin buffer there is a waste and overcomplicates things.
Also that commit breaks plain %pb so make sure you dont use %pb inside a viewport with a font number > 1 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24957 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/font.h')
-rw-r--r--firmware/export/font.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/font.h b/firmware/export/font.h
index e9bf086423..fb6438ea66 100644
--- a/firmware/export/font.h
+++ b/firmware/export/font.h
@@ -51,7 +51,8 @@ enum {
51#ifdef HAVE_REMOTE_LCD 51#ifdef HAVE_REMOTE_LCD
52 FONT_UI_REMOTE, /* UI font for remote LCD */ 52 FONT_UI_REMOTE, /* UI font for remote LCD */
53#endif 53#endif
54 SYSTEMFONTCOUNT /* Number of fonts reserved for the system and ui */ 54 SYSTEMFONTCOUNT, /* Number of fonts reserved for the system and ui */
55 FONT_FIRSTUSERFONT = 2
55}; 56};
56 57
57#define MAXFONTS 10 58#define MAXFONTS 10