1
0
Fork 0
forked from len0rd/rockbox

Better feedback when booting

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5825 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-02-07 01:47:47 +00:00
parent d4313ce88b
commit 2a3856f613

View file

@ -167,7 +167,6 @@ int main(void)
disk_init();
/* FixMe: the same kind of mounting happens in usb.c, share the code. */
rc = disk_mount_all();
if (rc<=0)
{
@ -178,6 +177,7 @@ int main(void)
}
lcd_puts(0, line++, "Loading firmware");
lcd_update();
i = load_firmware();
snprintf(buf, 256, "Result: %d", i);
lcd_puts(0, line++, buf);