]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cmd.c
huge audit of dprints throughout engine, all notices of successfully
[xonotic/darkplaces.git] / cmd.c
diff --git a/cmd.c b/cmd.c
index 3a269baa50e9f2afbd5caa517cafc1e341782df6..c085aa8856c846bd6b4b34b849b1a03d29591d4f 100644 (file)
--- a/cmd.c
+++ b/cmd.c
@@ -29,7 +29,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 // maximum number of parameters to a command
 #define        MAX_ARGS 80
 // maximum tokenizable commandline length (counting NUL terminations)
-#define CMD_TOKENIZELENGTH (MAX_INPUTLINE + 80)
+#define CMD_TOKENIZELENGTH (MAX_INPUTLINE + MAX_ARGS)
 
 typedef struct cmdalias_s
 {
@@ -306,7 +306,7 @@ static void Cmd_Exec_f (void)
                Con_Printf("couldn't exec %s\n",Cmd_Argv(1));
                return;
        }
-       Con_DPrintf("execing %s\n",Cmd_Argv(1));
+       Con_Printf("execing %s\n",Cmd_Argv(1));
 
        // if executing default.cfg for the first time, lock the cvar defaults
        // it may seem backwards to insert this text BEFORE the default.cfg