diff options
author | Dave Chapman <dave@dchapman.com> | 2008-10-19 15:21:47 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2008-10-19 15:21:47 +0000 |
commit | a6dbfe345c353d9ceb1a451b818dc7b2e01c78c1 (patch) | |
tree | 63f2de4ee22eef893174fa13fd54746da6210d8e /tools | |
parent | e18809bdc5439038aaff1b742451cb4bb9c8d8cf (diff) |
Correct the model numbers used for the Sansa V2 targets - these are MODEL_NUMBER in the config-target.h file
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18838 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/scramble.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/scramble.c b/tools/scramble.c index aaf3b9d232..0cf16031a4 100644 --- a/tools/scramble.c +++ b/tools/scramble.c @@ -286,11 +286,11 @@ int main (int argc, char** argv) else if(!strcmp(&argv[1][5], "9200")) /* Philips SA9200 */ modelnum = 34; else if (!strcmp(&argv[1][5], "clip")) - modelnum = 50; + modelnum = 40; else if (!strcmp(&argv[1][5], "e2v2")) - modelnum = 51; + modelnum = 41; else if (!strcmp(&argv[1][5], "m2v2")) - modelnum = 52; + modelnum = 42; else { fprintf(stderr, "unsupported model: %s\n", &argv[1][5]); return 2; |