From e8dfe1f21efe71243172211b531b1426d5535e60 Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Thu, 10 Sep 2015 23:47:00 -0400 Subject: [PATCH] set cache directory to retail FS1 location --- src/cfile/cfile.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cfile/cfile.cpp b/src/cfile/cfile.cpp index 09415e4..0508e18 100644 --- a/src/cfile/cfile.cpp +++ b/src/cfile/cfile.cpp @@ -285,12 +285,13 @@ cf_pathtype Pathtypes[CF_MAX_PATH_TYPES] = { { CF_TYPE_HUD, "Data" DIR_SEPARATOR_STR "Hud", ".ani .pcx .tga", CF_TYPE_DATA }, { CF_TYPE_PLAYER_MAIN, "Data" DIR_SEPARATOR_STR "Players", "", CF_TYPE_DATA }, { CF_TYPE_PLAYER_IMAGES_MAIN, "Data" DIR_SEPARATOR_STR "Players" DIR_SEPARATOR_STR "Images", ".pcx", CF_TYPE_PLAYER_MAIN }, - { CF_TYPE_CACHE, "Data" DIR_SEPARATOR_STR "Cache", ".clr .tmp", CF_TYPE_DATA }, //clr=cached color #ifdef MAKE_FS1 + { CF_TYPE_CACHE, "Cache", ".clr .tmp", CF_TYPE_DATA }, //clr=cached color { CF_TYPE_PLAYERS, "Players", ".hcf", CF_TYPE_ROOT }, { CF_TYPE_SINGLE_PLAYERS, "Players" DIR_SEPARATOR_STR "Single", ".plr .csg .css", CF_TYPE_PLAYERS }, { CF_TYPE_MULTI_PLAYERS, "Players" DIR_SEPARATOR_STR "Multi", ".plr", CF_TYPE_PLAYERS }, #else + { CF_TYPE_CACHE, "Data" DIR_SEPARATOR_STR "Cache", ".clr .tmp", CF_TYPE_DATA }, //clr=cached color { CF_TYPE_PLAYERS, "Data" DIR_SEPARATOR_STR "Players", ".hcf", CF_TYPE_DATA }, { CF_TYPE_SINGLE_PLAYERS, "Data" DIR_SEPARATOR_STR "Players" DIR_SEPARATOR_STR "Single", ".plr .csg .css", CF_TYPE_PLAYERS }, { CF_TYPE_MULTI_PLAYERS, "Data" DIR_SEPARATOR_STR "Players" DIR_SEPARATOR_STR "Multi", ".plr", CF_TYPE_DATA }, -- 2.39.2