]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.c
console logging (-condebug) now starts earlier in the startup process (just after...
[xonotic/darkplaces.git] / console.c
index 21148248e1ccaf21ec9cc676e164f70877ca4ff1..34ff0a488668358da636c290b88211bd62927d19 100644 (file)
--- a/console.c
+++ b/console.c
@@ -201,20 +201,13 @@ void Con_CheckResize (void)
 }
 
 
-/*
-================
-Con_Init
-================
-*/
-void Con_Init (void)
+void Con_InitLogging (void)
 {
 #define MAXGAMEDIRLEN 1000
        char temp[MAXGAMEDIRLEN+1];
        char *t2 = "/qconsole.log";
 
-       Cvar_RegisterVariable(&logfile);
        con_debuglog = COM_CheckParm("-condebug");
-
        if (con_debuglog)
        {
                if (strlen (fs_gamedir) < (MAXGAMEDIRLEN - strlen (t2)))
@@ -224,6 +217,16 @@ void Con_Init (void)
                }
                logfile.integer = 1;
        }
+}
+
+/*
+================
+Con_Init
+================
+*/
+void Con_Init (void)
+{
+       Cvar_RegisterVariable(&logfile);
 
        console_mempool = Mem_AllocPool("console");
        con_text = Mem_Alloc(console_mempool, CON_TEXTSIZE);