Change the cache filenames from _main.cfg-cache-SOMETHING to cache-SOMETHING

This commit is contained in:
Benoît Timbert 2007-07-27 20:55:32 +00:00
parent 4f7b54f90f
commit 61e28610e9

View File

@ -1523,7 +1523,7 @@ void game_controller::read_game_cfg(const preproc_map& defines, config& cfg, boo
if(is_valid) {
const std::string& cache = get_cache_dir();
if(cache != "") {
const std::string fname = cache + "/_main.cfg-cache" + str.str();
const std::string fname = cache + "/cache" + str.str();
const std::string fname_checksum = fname + ".checksum";
file_tree_checksum dir_checksum;