1
0
Fork 0
forked from len0rd/rockbox

plugins: use lcd_putsf/lcd_putsxyf

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-08-28 21:46:45 +00:00
parent 8418a2c94a
commit ab9fd1840b
52 changed files with 173 additions and 412 deletions

View file

@ -496,11 +496,8 @@ static void draw_cursor(void)
/* draw the info panel ... duh */
static void draw_info_panel(void)
{
char s[16];
rb->lcd_puts( 6, 0, "Flips" );
rb->snprintf( s, sizeof(s), "%d", moves );
rb->lcd_puts( 6, 1, s );
rb->lcd_putsf( 6, 1, "%d", moves );
}
#endif /* LCD */