mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
windows: move config.yml and games.yml to /config/
This commit is contained in:
parent
5c2c4a6649
commit
451e953d26
20 changed files with 76 additions and 94 deletions
|
|
@ -311,11 +311,7 @@ namespace rpcs3::utils
|
|||
|
||||
std::string get_custom_config_dir()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return fs::get_config_dir() + "config/custom_configs/";
|
||||
#else
|
||||
return fs::get_config_dir() + "custom_configs/";
|
||||
#endif
|
||||
return fs::get_config_dir(true) + "custom_configs/";
|
||||
}
|
||||
|
||||
std::string get_custom_config_path(const std::string& identifier)
|
||||
|
|
@ -330,11 +326,7 @@ namespace rpcs3::utils
|
|||
|
||||
std::string get_input_config_root()
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return fs::get_config_dir() + "config/input_configs/";
|
||||
#else
|
||||
return fs::get_config_dir() + "input_configs/";
|
||||
#endif
|
||||
return fs::get_config_dir(true) + "input_configs/";
|
||||
}
|
||||
|
||||
std::string get_input_config_dir(const std::string& title_id)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue