Changed some default cvar values to disable colour blends (other than contents)

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@662 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-12-21 04:30:17 +00:00
parent ea8ee4a355
commit bed7e1adee
1 changed files with 7 additions and 7 deletions

View File

@ -82,14 +82,14 @@ cvar_t crosshaircorrect = {"crosshaircorrect", "0", NULL, CVAR_SEMICHEAT};
cvar_t gl_cshiftpercent = {"gl_cshiftpercent", "100"};
cvar_t v_bonusflash = {"v_bonusflash", "1"};
cvar_t v_bonusflash = {"v_bonusflash", "0"};
cvar_t v_contentblend = {"v_contentblend", "1"};
cvar_t v_damagecshift = {"v_damagecshift", "1"};
cvar_t v_quadcshift = {"v_quadcshift", "1"};
cvar_t v_suitcshift = {"v_suitcshift", "1"};
cvar_t v_ringcshift = {"v_ringcshift", "1"};
cvar_t v_pentcshift = {"v_pentcshift", "1"};
cvar_t v_contentblend = {"v_contentblend", "0"};
cvar_t v_damagecshift = {"v_damagecshift", "0"};
cvar_t v_quadcshift = {"v_quadcshift", "0"};
cvar_t v_suitcshift = {"v_suitcshift", "0"};
cvar_t v_ringcshift = {"v_ringcshift", "0"};
cvar_t v_pentcshift = {"v_pentcshift", "0"};
extern cvar_t cl_chasecam;