mirror of
https://github.com/fabiangreffrath/woof.git
synced 2025-09-26 14:33:46 -04:00
skip response file in M_CheckCommandLine
I completely forgot about response file! This means no one has run woof-setup since Woof 10.1.0
This commit is contained in:
parent
62ddb7987e
commit
ec69d27549
@ -143,6 +143,13 @@ void M_CheckCommandLine(void)
|
||||
int i;
|
||||
int args = 0;
|
||||
|
||||
// skip response file
|
||||
if (myargv[p][0] == '@')
|
||||
{
|
||||
++p;
|
||||
continue;
|
||||
}
|
||||
|
||||
for (i = 0; i < arrlen(params_with_args); ++i)
|
||||
{
|
||||
if (!strcasecmp(myargv[p], "-file") ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user