mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix cvar flags to get rid of warnings (#2881)
This commit is contained in:
parent
3752b1d7c4
commit
fb34e78b7e
1 changed files with 3 additions and 3 deletions
|
@ -279,7 +279,7 @@ static cvarTable_t cvarTable[] = {
|
|||
{ &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 @@ static cvarTable_t cvarTable[] = {
|
|||
{ &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},
|
||||
|
|
Loading…
Reference in a new issue