Cosmetic bugfix - display correct message when generating firmware image for the 5g
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8350 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a36b1d4083
commit
25c66fc632
1 changed files with 5 additions and 1 deletions
|
@ -453,7 +453,11 @@ main(int argc, char **argv)
|
|||
|
||||
printf("Generating firmware image compatible with ");
|
||||
if (fw_version == 3) {
|
||||
printf("iPod mini, 4g and iPod photo...\n");
|
||||
if (needs_rcsc) {
|
||||
printf("iPod video\n");
|
||||
} else {
|
||||
printf("iPod mini, 4g and iPod photo/color...\n");
|
||||
}
|
||||
} else {
|
||||
printf("1g, 2g and 3g iPods...\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue