1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Jens Arnold 2006-10-07 20:00:49 +00:00
parent ce8a1c986f
commit 89658651d7
4 changed files with 103 additions and 42 deletions

View file

@ -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)