diff --git a/src/m_argv.c b/src/m_argv.c index a9ff36f5..27dc1a7e 100644 --- a/src/m_argv.c +++ b/src/m_argv.c @@ -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") ||