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:
parent
05dccc3551
commit
1c69caf214
1 changed files with 3 additions and 1 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Reference in a new issue