summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/scramble.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/scramble.c b/tools/scramble.c
index da035436eb..c9b6d15dd4 100644
--- a/tools/scramble.c
+++ b/tools/scramble.c
@@ -125,7 +125,7 @@ void usage(void)
125 "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n"); 125 "\t tpj2, c200, e200, giga, gigs, m100, m500, d2,\n");
126 printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n" 126 printf("\t 9200, 1630, ldax, m200, c100, clip, e2v2, m2v4,\n"
127 "\t fuze, c2v2, clv2, y820, y920, y925, x747, 747p, \n" 127 "\t fuze, c2v2, clv2, y820, y920, y925, x747, 747p, \n"
128 "\t x777, nn2g)\n"); 128 "\t x777, nn2g, m244)\n");
129 printf("\nNo option results in Archos standard player/recorder format.\n"); 129 printf("\nNo option results in Archos standard player/recorder format.\n");
130 130
131 exit(1); 131 exit(1);
@@ -318,6 +318,8 @@ int main (int argc, char** argv)
318 modelnum = 62; 318 modelnum = 62;
319 else if (!strcmp(&argv[1][5], "x767")) 319 else if (!strcmp(&argv[1][5], "x767"))
320 modelnum = 64; 320 modelnum = 64;
321 else if (!strcmp(&argv[1][5], "m244"))
322 modelnum = 131;
321 else { 323 else {
322 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); 324 fprintf(stderr, "unsupported model: %s\n", &argv[1][5]);
323 return 2; 325 return 2;