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:
Roman Fomin 2022-08-13 00:01:01 +07:00
parent 62ddb7987e
commit ec69d27549

View File

@ -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") ||