commit b212241cc23678f9aaa4fac7f3396a22e8739ba1
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Mon Oct 23 23:14:43 2006 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Mon Oct 23 23:14:43 2006 +0000
Write newlines in response files to separate parameters.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 725
---
setup/execute.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/setup/execute.c b/setup/execute.c
index 09d09489..5e78970a 100644
--- a/setup/execute.c
+++ b/setup/execute.c
@@ -66,6 +66,7 @@ void AddCmdLineParameter(execute_context_t *context, char *s, ...)
va_start(args, s);
vfprintf(context->stream, s, args);
+ fprintf(context->stream, "\n");
}
void ExecuteDoom(execute_context_t *context)