1
0
Fork 0
forked from len0rd/rockbox

fix r27926 : lcd_puts() not changed to lcd_putsf()

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27928 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Rafaël Carré 2010-08-28 21:54:24 +00:00
parent 73f27359c6
commit b08ad5eb48
2 changed files with 2 additions and 2 deletions

View file

@ -570,7 +570,7 @@ void ShowFlashInfo(tFlashInfo* pInfo)
if (pInfo->size) if (pInfo->size)
{ {
rb->lcd_puts(0, 1, pInfo->name); rb->lcd_puts(0, 1, pInfo->name);
rb->lcd_puts(0, 2, "Size: %d KB", pInfo->size / 1024); rb->lcd_putsf(0, 2, "Size: %d KB", pInfo->size / 1024);
} }
else else
{ {

View file

@ -3652,7 +3652,7 @@ static int record_file(char *filename)
recording = false; recording = false;
saving = true; saving = true;
} }
rb->lcd_puts(0, 2, "Bytes: %d", num_rec_bytes); rb->lcd_putsf(0, 2, "Bytes: %d", num_rec_bytes);
rb->lcd_update(); rb->lcd_update();
} }
/* read sample rate from MAS */ /* read sample rate from MAS */