]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - chase.c
added CVAR_SAVE and CVAR_NOTIFY flags to cvar_t structure (at the beginning), updated...
[xonotic/darkplaces.git] / chase.c
diff --git a/chase.c b/chase.c
index 7633ff6cc9be4a3a815aeff8d06dc130a96c250b..22c82aac654718816b3bbde95f5b64c4c12de379 100644 (file)
--- a/chase.c
+++ b/chase.c
@@ -21,9 +21,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include "quakedef.h"
 
-cvar_t chase_back = {"chase_back", "48", true};
-cvar_t chase_up = {"chase_up", "48", true};
-cvar_t chase_active = {"chase_active", "0", true};
+cvar_t chase_back = {CVAR_SAVE, "chase_back", "48"};
+cvar_t chase_up = {CVAR_SAVE, "chase_up", "48"};
+cvar_t chase_active = {CVAR_SAVE, "chase_active", "0"};
 
 void Chase_Init (void)
 {