[quake3-commits] r2107 - trunk/code/cgame
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sun Jul 31 15:12:16 EDT 2011
Author: thilo
Date: 2011-07-31 15:12:16 -0400 (Sun, 31 Jul 2011)
New Revision: 2107
Modified:
trunk/code/cgame/cg_main.c
Log:
Fix cvar flags to get rid of warnings (#2881)
Modified: trunk/code/cgame/cg_main.c
===================================================================
--- trunk/code/cgame/cg_main.c 2011-07-29 20:18:37 UTC (rev 2106)
+++ trunk/code/cgame/cg_main.c 2011-07-31 19:12:16 UTC (rev 2107)
@@ -279,7 +279,7 @@
{ &cg_buildScript, "com_buildScript", "0", 0 }, // force loading of all possible data amd error on failures
{ &cg_paused, "cl_paused", "0", CVAR_ROM },
{ &cg_blood, "com_blood", "1", CVAR_ARCHIVE },
- { &cg_synchronousClients, "g_synchronousClients", "0", 0 }, // communicated by systeminfo
+ { &cg_synchronousClients, "g_synchronousClients", "0", CVAR_SYSTEMINFO },
#ifdef MISSIONPACK
{ &cg_redTeamName, "g_redteam", DEFAULT_REDTEAM_NAME, CVAR_ARCHIVE | CVAR_SERVERINFO | CVAR_USERINFO },
{ &cg_blueTeamName, "g_blueteam", DEFAULT_BLUETEAM_NAME, CVAR_ARCHIVE | CVAR_SERVERINFO | CVAR_USERINFO },
@@ -303,8 +303,8 @@
{ &cg_smoothClients, "cg_smoothClients", "0", CVAR_USERINFO | CVAR_ARCHIVE},
{ &cg_cameraMode, "com_cameraMode", "0", CVAR_CHEAT},
- { &pmove_fixed, "pmove_fixed", "0", 0},
- { &pmove_msec, "pmove_msec", "8", 0},
+ { &pmove_fixed, "pmove_fixed", "0", CVAR_SYSTEMINFO},
+ { &pmove_msec, "pmove_msec", "8", CVAR_SYSTEMINFO},
{ &cg_noTaunt, "cg_noTaunt", "0", CVAR_ARCHIVE},
{ &cg_noProjectileTrail, "cg_noProjectileTrail", "0", CVAR_ARCHIVE},
{ &cg_smallFont, "ui_smallFont", "0.25", CVAR_ARCHIVE},
More information about the quake3-commits
mailing list