summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-01-23 22:13:38 +0000
committerJens Arnold <amiconn@rockbox.org>2006-01-23 22:13:38 +0000
commit83b2628b052381de3e1fe07a66f5306ae9582c69 (patch)
tree05f3d90e11854051b27034f0180dc870ac742be8 /apps
parent3d2cab614ee82aed28dc368b15b4492597e233f3 (diff)
downloadrockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.tar.gz
rockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.zip
Bugfix: gray_putsxyofs() couldn't have worked before
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8432 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/lib/gray_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_draw.c b/apps/plugins/lib/gray_draw.c
index 802d8d2782..171c5e4a4b 100644
--- a/apps/plugins/lib/gray_draw.c
+++ b/apps/plugins/lib/gray_draw.c
@@ -529,7 +529,7 @@ void gray_gray_bitmap(const unsigned char *src, int x, int y, int width,
529void gray_putsxyofs(int x, int y, int ofs, const unsigned char *str) 529void gray_putsxyofs(int x, int y, int ofs, const unsigned char *str)
530{ 530{
531 int ch; 531 int ch;
532 struct font* pf = font_get(_gray_info.curfont); 532 struct font* pf = _gray_rb->font_get(_gray_info.curfont);
533 533
534 while ((ch = *str++) != '\0' && x < _gray_info.width) 534 while ((ch = *str++) != '\0' && x < _gray_info.width)
535 { 535 {