Fix typo preventing correct usage of -out option.
This commit is contained in:
parent
259810e05b
commit
73fc98a7bf
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ int MAIN(int argc, char **argv)
|
|||
else
|
||||
badopt = 1;
|
||||
}
|
||||
if (strcmp(argv[i], "-engine") == 0)
|
||||
else if (strcmp(argv[i], "-engine") == 0)
|
||||
{
|
||||
if ((argv[i+1] != NULL) && (engine == NULL))
|
||||
engine = argv[++i];
|
||||
|
|
Loading…
Reference in a new issue