This commit is contained in:
Enno Rehling 2012-10-21 19:48:40 -07:00
parent e378397fb4
commit 3d7be88bad
4 changed files with 8 additions and 2 deletions

2
.gitignore vendored
View File

@ -10,3 +10,5 @@ build-*/
ipch/ ipch/
*.log *.log
src/Release/ src/Release/
game-e3/data/
game-e3/reports/

@ -1 +1 @@
Subproject commit cde0ce07424e19db30c2d61ce6356cf58fa12ba8 Subproject commit 79feb5723c075a45a1a94ed286c87993314ce8da

View File

@ -11,7 +11,7 @@ locales = de,en
[config] [config]
game = e3a game = e3a
source_dir = .. source_dir = ..
maxnmrs = 10 maxnmrs = 20
[editor] [editor]
color = 1 color = 1

View File

@ -89,6 +89,10 @@ static int parse_args(int argc, char **argv, int *exitcode)
case 't': case 't':
turn = atoi(argv[i][2] ? argv[i]+2 : argv[++i]); turn = atoi(argv[i][2] ? argv[i]+2 : argv[++i]);
break; break;
case 'r':
entry_point = "run_turn";
turn = atoi(argv[i][2] ? argv[i]+2 : argv[++i]);
break;
case 'q': case 'q':
verbosity = 0; verbosity = 0;
break; break;