diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-01-23 22:13:38 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-01-23 22:13:38 +0000 |
| commit | 83b2628b052381de3e1fe07a66f5306ae9582c69 (patch) | |
| tree | 05f3d90e11854051b27034f0180dc870ac742be8 /apps/plugins/lib | |
| parent | 3d2cab614ee82aed28dc368b15b4492597e233f3 (diff) | |
| download | rockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.zip rockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.tar.gz rockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.tar.bz2 rockbox-83b2628b052381de3e1fe07a66f5306ae9582c69.tar.xz | |
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/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/gray_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_draw.c b/apps/plugins/lib/gray_draw.c index 802d8d2..171c5e4 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) { |