ref: d331243c9c83ffa1815aa71dbe2a8fe79d03ca67
parent: 5f96cc7fdc463b695419d0589b1d19fe38e6efe6
author: Simon Howard <[email protected]>
date: Tue Oct 24 16:00:38 EDT 2006
Escape WAD filenames passed to Doom with " quotes, to allow WAD filenames with spaces. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 732
--- a/setup/multiplayer.c
+++ b/setup/multiplayer.c
@@ -92,7 +92,7 @@
AddCmdLineParameter(exec, "-file");
}
- AddCmdLineParameter(exec, wads[i]);
+ AddCmdLineParameter(exec, "\"%s\"", wads[i]);
}
}
}