diff options
Diffstat (limited to 'contrib/extractor/System.cpp')
-rw-r--r-- | contrib/extractor/System.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/contrib/extractor/System.cpp b/contrib/extractor/System.cpp index 3c319172723..f9f684014c2 100644 --- a/contrib/extractor/System.cpp +++ b/contrib/extractor/System.cpp @@ -70,7 +70,7 @@ bool FileExists( const char* FileName ) void Usage(char* prg) { - printf("Usage:\n%s -[var] [value]\n-i set input path\n-o set output path\n-r set resolution\n-e extract only MAP(1)/DBC(2) - standard: both(3)\nExample: %s -r 256 -i \"c:\\games\\game\"", prg, prg); + printf("Usage:\n%s -[var] [value]\n-i set input path\n-o set output path\n-e extract only MAP(1)/DBC(2) - standard: both(3)\nExample: %s -r 256 -i \"c:\\games\\game\"", prg, prg); exit(1); } @@ -99,12 +99,6 @@ void HandleArgs(int argc, char * arg[]) else Usage(arg[0]); break; - case 'r': - if(c + 1 < argc) // all ok - iRes=atoi(arg[(c++) + 1]); - else - Usage(arg[0]); - break; case 'e': if(c + 1 < argc) // all ok { |