aboutsummaryrefslogtreecommitdiff
path: root/contrib/extractor/System.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-02-17 15:42:04 -0600
committermegamage <none@none>2009-02-17 15:42:04 -0600
commit68cfb7c5a492ca1cc691cce831421af98bd6fe45 (patch)
tree5d1733d5b59eaa2137b03c4a8dd7fc39e30f1c74 /contrib/extractor/System.cpp
parent89e07d7c41698c1594e7d5ca947315f1441d064d (diff)
[7291] Better map height calculation by use client data format.
Need re extract map files by use new ad.exe Author: DiSlord --HG-- branch : trunk
Diffstat (limited to 'contrib/extractor/System.cpp')
-rw-r--r--contrib/extractor/System.cpp8
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
{