From: havoc Date: Sat, 14 Apr 2007 18:27:13 +0000 (+0000) Subject: changed default cl_autodemo_nameformat to put demos in an autodemos/ X-Git-Tag: xonotic-v0.1.0preview~3336 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=37e8d12efab493762a966ecdc93c100672c23b5f;p=xonotic%2Fdarkplaces.git changed default cl_autodemo_nameformat to put demos in an autodemos/ directory (they clutter the id1 directory too much) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7094 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_main.c b/cl_main.c index fcda0088..a95388a3 100644 --- a/cl_main.c +++ b/cl_main.c @@ -52,7 +52,7 @@ cvar_t m_side = {CVAR_SAVE, "m_side","0.8","mouse side speed multiplier"}; cvar_t freelook = {CVAR_SAVE, "freelook", "1","mouse controls pitch instead of forward/back"}; cvar_t cl_autodemo = {CVAR_SAVE, "cl_autodemo", "0", "records every game played, using the date/time and map name to name the demo file" }; -cvar_t cl_autodemo_nameformat = {CVAR_SAVE, "cl_autodemo_nameformat", "%Y-%m-%d_%H-%M", "The format of the cl_autodemo filename, followed by the map name" }; +cvar_t cl_autodemo_nameformat = {CVAR_SAVE, "cl_autodemo_nameformat", "autodemos/%Y-%m-%d_%H-%M", "The format of the cl_autodemo filename, followed by the map name" }; cvar_t r_draweffects = {0, "r_draweffects", "1","renders temporary sprite effects"};