summaryrefslogtreecommitdiff
path: root/src/common.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2012-07-21 16:41:27 +0400
committerAndrey Nazarov <skuller@skuller.net>2012-07-21 16:41:27 +0400
commit77b6fe9d77fd7f72002e53585958ba77b9b44d2b (patch)
tree05a9736b1827fd1662b3f60f05276cd1b57cc5e1 /src/common.c
parentf7f3b836ec17fa11fd3b07828fd91ac6bc4896d6 (diff)
Rename config filename macros.
Define them directly in source code.
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common.c b/src/common.c
index 0641989..5a5fa75 100644
--- a/src/common.c
+++ b/src/common.c
@@ -2109,9 +2109,9 @@ void Qcommon_Init(int argc, char **argv)
// execute configs: default.cfg may come from the packfile, but config.cfg
// and autoexec.cfg must be real files within the game directory
- Com_AddConfigFile(COM_DEFAULTCFG_NAME, 0);
- Com_AddConfigFile(COM_CONFIG_NAME, FS_TYPE_REAL | FS_PATH_GAME);
- Com_AddConfigFile(COM_AUTOEXECCFG_NAME, FS_TYPE_REAL | FS_PATH_GAME);
+ Com_AddConfigFile(COM_DEFAULT_CFG, 0);
+ Com_AddConfigFile(COM_CONFIG_CFG, FS_TYPE_REAL | FS_PATH_GAME);
+ Com_AddConfigFile(COM_AUTOEXEC_CFG, FS_TYPE_REAL | FS_PATH_GAME);
Com_AddEarlyCommands(qtrue);