HLExtract: update usage to reflect Unix bin name

Update the usage message of HLExtract to reflect that the name of the binary is
"hlextract" as dictated by the Makefile. Also remove the quotes that would break
substitution of tilde for the home directory.
This commit is contained in:
Ondřej Hošek 2013-05-07 15:03:28 +02:00
parent 522c3f9237
commit fd6cfcbe5c
1 changed files with 4 additions and 4 deletions

View File

@ -627,10 +627,10 @@ hlVoid PrintUsage()
printf("HLExtract.exe -p \"C:\\half-life.gcf\" -lf \"C:\\half-life.txt\" -m -s\n");
printf("HLExtract.exe -p \"C:\\half-life.gcf\" -m -f\n");
#else
printf("HLExtract.exe -p \"~/half-life.gcf\" -d \"~/backup\" -e \"root/valve/models\" -e \"root/valve/config.cfg\"\n");
printf("HLExtract.exe -p \"~/half-life.gcf\" -c -m -v\n");
printf("HLExtract.exe -p \"~/half-life.gcf\" -lf \"~/half-life.txt\" -m -s\n");
printf("HLExtract.exe -p \"~/half-life.gcf\" -m -f\n");
printf("hlextract -p ~/half-life.gcf -d ~/backup -e \"root/valve/models\" -e \"root/valve/config.cfg\"\n");
printf("hlextract -p ~/half-life.gcf -c -m -v\n");
printf("hlextract -p ~/half-life.gcf -lf ~/half-life.txt -m -s\n");
printf("hlextract -p ~/half-life.gcf -m -f\n");
#endif
}