mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-08 16:05:56 +00:00
System: remove deprecated custom config location
This commit is contained in:
parent
1a443cf6b5
commit
69faf14a79
5 changed files with 22 additions and 56 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue