]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - cvar.c
rename VM_hash to VM_crc16, and the extension to DP_QC_CRC16. That way, it is specifi...
[xonotic/darkplaces.git] / cvar.c
diff --git a/cvar.c b/cvar.c
index beee7212e35d8decfee66aa7c7885085f1fc2562..e51b8d0943d73ec3b865e2bf8c1af36a331a8304 100644 (file)
--- a/cvar.c
+++ b/cvar.c
@@ -672,7 +672,8 @@ void Cvar_Set_f (void)
                return;
        }
 
-       Con_DPrint("Set: ");
+       if (developer.integer >= 100)
+               Con_DPrint("Set: ");
 
        // all looks ok, create/modify the cvar
        Cvar_Get(Cmd_Argv(1), Cmd_Argv(2), 0);
@@ -697,7 +698,8 @@ void Cvar_SetA_f (void)
                return;
        }
 
-       Con_DPrint("SetA: ");
+       if (developer.integer >= 100)
+               Con_DPrint("SetA: ");
 
        // all looks ok, create/modify the cvar
        Cvar_Get(Cmd_Argv(1), Cmd_Argv(2), CVAR_SAVE);