From 88f7cf199437c118a35d1fa53f8ae38c34bacb50 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Wed, 24 Jun 2015 20:10:10 -0500 Subject: [PATCH] Make EF use separate client and server config files --- code/qcommon/qcommon.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/qcommon/qcommon.h b/code/qcommon/qcommon.h index b6b0d17933..50342282f5 100644 --- a/code/qcommon/qcommon.h +++ b/code/qcommon/qcommon.h @@ -637,7 +637,11 @@ issues. #define MAX_FILE_HANDLES 64 #ifdef ELITEFORCE - #define Q3CONFIG_CFG "hmconfig.cfg" + #ifdef DEDICATED + # define Q3CONFIG_CFG "hmconfig_server.cfg" + #else + # define Q3CONFIG_CFG "hmconfig.cfg" + #endif #else #ifdef DEDICATED # define Q3CONFIG_CFG "q3config_server.cfg"