diff --git a/code/qcommon/common.c b/code/qcommon/common.c index 64ec51d9..8ab7baff 100644 --- a/code/qcommon/common.c +++ b/code/qcommon/common.c @@ -2665,6 +2665,7 @@ void Com_Init( char *commandLine ) { // get the developer cvar set as early as possible Com_StartupVariable( "developer" ); + com_developer = Cvar_Get("developer", "0", CVAR_TEMP); // done early so bind command exists CL_InitKeyCommands(); @@ -2714,7 +2715,6 @@ void Com_Init( char *commandLine ) { com_maxfps = Cvar_Get ("com_maxfps", "85", CVAR_ARCHIVE); com_blood = Cvar_Get ("com_blood", "1", CVAR_ARCHIVE); - com_developer = Cvar_Get ("developer", "0", CVAR_TEMP ); com_logfile = Cvar_Get ("logfile", "0", CVAR_TEMP ); com_timescale = Cvar_Get ("timescale", "1", CVAR_CHEAT | CVAR_SYSTEMINFO );