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:
Dave Chapman 2006-01-16 00:01:05 +00:00
parent a36b1d4083
commit 25c66fc632

View file

@ -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");
}