Changed the remaining cvars to use the macro.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1949 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-02-11 14:58:48 +00:00
parent 0ad239ca6a
commit e3683b17c1
2 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ sv_masterlist_t sv_masterlist[] = {
{true, SCVAR("sv_masterextra1", "ghdigital.com")}, //69.59.212.88
{true, SCVAR("sv_masterextra2", "dpmaster.deathmask.net")}, //209.164.24.243
{true, SCVAR("sv_masterextra3", "12.166.196.192")}, //blaze.mindphukd.org (doesn't resolve currently but works as an ip)
{false, {NULL}}
{false, SCVAR(NULL, NULL)}
};
client_t *host_client; // current client

View File

@ -24,9 +24,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define NUM_MIPS 4
cvar_t d_subdiv16 = {"d_subdiv16", "1"};
cvar_t d_mipcap = {"d_mipcap", "0"};
cvar_t d_mipscale = {"d_mipscale", "0.5"};
cvar_t d_subdiv16 = SCVAR("d_subdiv16", "1");
cvar_t d_mipcap = SCVAR("d_mipcap", "0");
cvar_t d_mipscale = SCVAR("d_mipscale", "0.5");
extern cvar_t d_smooth;
surfcache_t *d_initial_rover;