From 49413057ee47a386041562aaab364c36f48b6dcd Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Sun, 6 Jul 2008 00:31:52 +0000 Subject: [PATCH] * Change dedicated cvar to CVAR_LATCH on the dedicated server --- code/qcommon/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/qcommon/common.c b/code/qcommon/common.c index d4cab1eb..d186455e 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2561,7 +2561,7 @@ void Com_Init( char *commandLine ) { // get dedicated here for proper hunk megs initialization #ifdef DEDICATED - com_dedicated = Cvar_Get ("dedicated", "1", CVAR_ROM); + com_dedicated = Cvar_Get ("dedicated", "1", CVAR_LATCH); #else com_dedicated = Cvar_Get ("dedicated", "0", CVAR_LATCH); #endif