From f00c8e194323e6939d642e37ce831cb6a135ee27 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Fri, 26 Dec 2014 16:34:38 -0600 Subject: [PATCH] Revert "Move C_ExecCmdLineParams() call slightly later in the startup process." This reverts commit 3c376aa342994971e0e3f578476e8085d346cdf1. - I was wrong. It breaks pullin and complete logging (at the very least). --- src/d_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index 2ceec3926..11a8c4ff0 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -2273,6 +2273,8 @@ void D_DoomMain (void) execFiles = Args->GatherFiles ("-exec"); D_MultiExec (execFiles, true); + C_ExecCmdLineParams (); // [RH] do all +set commands on the command line + CopyFiles(allwads, pwads); // Since this function will never leave we must delete this array here manually. @@ -2288,8 +2290,6 @@ void D_DoomMain (void) // Now that wads are loaded, define mod-specific cvars. ParseCVarInfo(); - C_ExecCmdLineParams (); // [RH] do all +set commands on the command line - // [RH] Initialize localizable strings. GStrings.LoadStrings (false);