summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-08-26 21:15:07 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-08-26 21:15:07 +0000
commit5d36aaf249f4f7baf752f3ecc5c252de05cd7166 (patch)
treebedfc311a9a72d07957627f4c4d829f586f83ca9 /apps/plugins
parent033ba1669b1e4c7c29e0e4d4d3573a75b681abb5 (diff)
downloadrockbox-5d36aaf249f4f7baf752f3ecc5c252de05cd7166.tar.gz
rockbox-5d36aaf249f4f7baf752f3ecc5c252de05cd7166.zip
New font format (already rotated) saves code, space and time. On the downside this new format is incompatible, so get the new fonts, too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5015 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lib/gray_putsxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_putsxy.c b/apps/plugins/lib/gray_putsxy.c
index 51f1ca166a..20af8a3cbf 100644
--- a/apps/plugins/lib/gray_putsxy.c
+++ b/apps/plugins/lib/gray_putsxy.c
@@ -37,7 +37,7 @@
37void gray_putsxy(int x, int y, const unsigned char *str) 37void gray_putsxy(int x, int y, const unsigned char *str)
38{ 38{
39 int ch, width; 39 int ch, width;
40 bitmap_t *bits; 40 unsigned char *bits;
41 struct font *pf = _graybuf->curfont; 41 struct font *pf = _graybuf->curfont;
42 42
43 if ((unsigned) x >= (unsigned) _graybuf->width 43 if ((unsigned) x >= (unsigned) _graybuf->width