]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - console.c
changed -march=686 to -march=i686
[xonotic/darkplaces.git] / console.c
index 1065d847febc4cddc0b1237b06a8813ad60f8383..218ea632fbb918b3c78d0c9ac73d8f68dcf6d221 100644 (file)
--- a/console.c
+++ b/console.c
@@ -47,8 +47,8 @@ int                   con_current;            // where next message will be printed
 int                    con_x;                          // offset in current line for next print
 char           *con_text = 0;
 
-cvar_t         con_notifytime = {"con_notifytime","3"};        //seconds
-cvar_t         logfile = {"logfile","0"};
+cvar_t         con_notifytime = {CVAR_SAVE, "con_notifytime","3"};     //seconds
+cvar_t         logfile = {0, "logfile","0"};
 
 #define        NUM_CON_TIMES 4
 float          con_times[NUM_CON_TIMES];       // realtime time the line was generated
@@ -393,7 +393,7 @@ void Con_Printf (char *fmt, ...)
        va_end (argptr);
        
 // also echo to debugging console
-       Sys_Printf ("%s", msg); // also echo to debugging console
+       Sys_Printf ("%s", msg);
 
 // log all messages to file
        if (con_debuglog)