Skip to content
Snippets Groups Projects
Commit 475e6b81 authored by rswindell's avatar rswindell
Browse files

Ingores ini filename in second pass through command-line parms.

parent 6249b0bb
No related branches found
No related tags found
No related merge requests found
...@@ -802,6 +802,8 @@ int main(int argc, char** argv) ...@@ -802,6 +802,8 @@ int main(int argc, char** argv)
arg=argv[i]; arg=argv[i];
while(*arg=='-') while(*arg=='-')
arg++; arg++;
if(strchr(arg,BACKSLASH)) /* ini_file name */
continue;
if(!stricmp(arg,"defaults")) { if(!stricmp(arg,"defaults")) {
printf("Default settings:\n"); printf("Default settings:\n");
printf("\n"); printf("\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment