Line too wide for nano screen, split it up.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8376 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thom Johansen 2006-01-18 23:02:00 +00:00
parent 05dccc3551
commit 1c69caf214

View file

@ -243,7 +243,9 @@ int load_rockbox(unsigned char* buf)
model[4] = 0;
snprintf(str, 80, "Model: %s, Checksum: %x", model, chksum);
snprintf(str, 80, "Model: %s", model);
lcd_puts(0, line++, str);
snprintf(str, 80, "Checksum: %x", chksum);
lcd_puts(0, line++, str);
lcd_update();