System: remove deprecated custom config location

This commit is contained in:
Megamouse 2021-09-08 02:13:10 +02:00
parent 1a443cf6b5
commit 69faf14a79
5 changed files with 22 additions and 56 deletions

View file

@ -214,16 +214,9 @@ namespace rpcs3::utils
#endif
}
std::string get_custom_config_path(const std::string& title_id, bool get_deprecated_path)
std::string get_custom_config_path(const std::string& title_id)
{
std::string path;
if (get_deprecated_path)
path = fs::get_config_dir() + "data/" + title_id + "/config.yml";
else
path = get_custom_config_dir() + "config_" + title_id + ".yml";
return path;
return get_custom_config_dir() + "config_" + title_id + ".yml";
}
std::string get_input_config_root()