summaryrefslogtreecommitdiff
path: root/firmware/font.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-21 19:10:09 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-21 19:10:09 +0000
commitf85103e8f2fe19b8e4495bc0317dd853f6aca23a (patch)
tree5baa7ffc4bf27c260b25c8bd0f18ad2177a936f1 /firmware/font.c
parentc5bb1925ebbeff7a49a938f9f00ddc66b1d6ca5d (diff)
downloadrockbox-f85103e8f2fe19b8e4495bc0317dd853f6aca23a.tar.gz
rockbox-f85103e8f2fe19b8e4495bc0317dd853f6aca23a.zip
remote multifont fixes. it shoud be working again (blame AlexP! he made me break it last week!)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24812 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/font.c')
-rw-r--r--firmware/font.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/font.c b/firmware/font.c
index 52c6ffae6a..534fa922fd 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -98,6 +98,9 @@ void font_init(void)
98 while (i<MAXFONTS) 98 while (i<MAXFONTS)
99 sysfonts[i++] = NULL; 99 sysfonts[i++] = NULL;
100 font_reset(NULL); 100 font_reset(NULL);
101#ifdef HAVE_REMOTE_LCD
102 font_reset(&remote_font_ui);
103#endif
101} 104}
102 105
103/* Check if we have x bytes left in the file buffer */ 106/* Check if we have x bytes left in the file buffer */