Set the default level to 4.

It was supposed to be 2, but for some reason I neglected to set it when I
set up the options parsing. However, level 4 is the standard for production
maps, and it happens to be faster than level 2 (at least for gmsp3v2.bsp)
This commit is contained in:
Bill Currie 2013-03-09 15:01:54 +09:00
parent 3232c22795
commit fe55bb678e
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ DecodeArgs (int argc, char **argv)
options.verbosity = 0; options.verbosity = 0;
options.bspfile = NULL; options.bspfile = NULL;
options.threads = 1; options.threads = 1;
options.level = 4;
while ((c = getopt_long (argc, argv, short_options, long_options, 0)) while ((c = getopt_long (argc, argv, short_options, long_options, 0))
!= EOF) { != EOF) {