From 89658651d766faaed2503ac7b3cc146369347c81 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 7 Oct 2006 20:00:49 +0000 Subject: Rockblox: * Ported to the Player :-P * Slight optimisation in refresh_board(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11146 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/lib/playergfx.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'apps/plugins/lib/playergfx.c') diff --git a/apps/plugins/lib/playergfx.c b/apps/plugins/lib/playergfx.c index b6e7ccfc64..1df7a3be4c 100644 --- a/apps/plugins/lib/playergfx.c +++ b/apps/plugins/lib/playergfx.c @@ -85,6 +85,12 @@ void pgfx_display(int cx, int cy) pgfx_rb->lcd_putc(cx + i, cy + j, gfx_chars[char_height * i + j]); } +void pgfx_display_block(int cx, int cy, int x, int y) +{ + pgfx_rb->lcd_putc(cx, cy, gfx_chars[char_height * x + y]); +} + + /*** Update functions ***/ void pgfx_update(void) -- cgit v1.2.3