From 83b2628b052381de3e1fe07a66f5306ae9582c69 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Mon, 23 Jan 2006 22:13:38 +0000 Subject: Bugfix: gray_putsxyofs() couldn't have worked before git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8432 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lib/gray_draw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps') 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, void gray_putsxyofs(int x, int y, int ofs, const unsigned char *str) { int ch; - struct font* pf = font_get(_gray_info.curfont); + struct font* pf = _gray_rb->font_get(_gray_info.curfont); while ((ch = *str++) != '\0' && x < _gray_info.width) { -- cgit v1.2.3