From 3d58770b4e73dcc6930447c0eccc8970146fa908 Mon Sep 17 00:00:00 2001 From: Tony Tyson Date: Fri, 28 Apr 2000 02:46:02 +0000 Subject: [PATCH] Trivial fix for WIN32 version when GLOBAL_CFG_FILE is not defined. --- common/host.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/host.c b/common/host.c index 8738fb5..fafdbab 100644 --- a/common/host.c +++ b/common/host.c @@ -556,20 +556,23 @@ Host_Init (quakeparms_t *parms) // would have been nice if Cmd_Exec_f could have been used, but it // only reads from within the quake file system, and changing that is // probably Not A Good Thing (tm). +#if defined(GLOBAL_CFG_FILE) global_cfg_file = Cvar_Get("global_cfg_file", GLOBAL_CFG_FILE, CVAR_ROM, "global configuration file"); Cmd_Exec_File (global_cfg_file->string); Cbuf_Execute_Sets (); +#endif CL_InitCvars (); SCR_InitCvars (); VID_InitCvars (); COM_Init (); - +#if defined(GLOBAL_CFG_FILE) Cmd_Exec_File (global_cfg_file->string); Cbuf_Execute (); +#endif // reparse the command line for + commands other than set (sets still done, // but it doesn't matter)