diff options
Diffstat (limited to 'bootloader')
| -rw-r--r-- | bootloader/ipod.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootloader/ipod.c b/bootloader/ipod.c index beb84e3..d09a227 100644 --- a/bootloader/ipod.c +++ b/bootloader/ipod.c @@ -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(); |