summaryrefslogtreecommitdiff
path: root/tools/scramble.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/scramble.c')
-rw-r--r--tools/scramble.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index c3b200c01e..c243d78b64 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -128,7 +128,7 @@ void usage(void)
128 "\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n" 128 "\t 9200, 1630, 6330, ldax, m200, c100, clip, e2v2,\n"
129 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n" 129 "\t m2v4, fuze, c2v2, clv2, y820, y920, y925, x747,\n"
130 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n" 130 "\t 747p, x777, nn2g, m244, cli+, fuz2, hd20, hd30,\n"
131 "\t ip6g, rk27, clzp)\n"); 131 "\t ip6g, rk27, clzp, zxf2, zxf3)\n");
132 printf("\nNo option results in Archos standard player/recorder format.\n"); 132 printf("\nNo option results in Archos standard player/recorder format.\n");
133 133
134 exit(1); 134 exit(1);
@@ -361,6 +361,10 @@ int main (int argc, char** argv)
361 modelnum = 79; 361 modelnum = 79;
362 else if (!strcmp(&argv[1][5], "conn")) /* Sansa Connect */ 362 else if (!strcmp(&argv[1][5], "conn")) /* Sansa Connect */
363 modelnum = 81; 363 modelnum = 81;
364 else if (!strcmp(&argv[1][5], "zxf2")) /* Creative Zen X-Fi2 */
365 modelnum = 82;
366 else if (!strcmp(&argv[1][5], "zxf3")) /* Creative Zen X-Fi3 */
367 modelnum = 83;
364 else { 368 else {
365 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 369 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
366 return 2; 370 return 2;