mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 07:51:28 +12:00
per game config.yml (#2418)
This commit is contained in:
parent
5fce74a2a6
commit
3e0c356b0b
6 changed files with 9 additions and 9 deletions
|
@ -229,9 +229,9 @@ void Emulator::Load()
|
|||
}
|
||||
|
||||
// Load custom config-1
|
||||
if (fs::file cfg_file{m_cache_path + "config.yml"})
|
||||
if (fs::file cfg_file{ fs::get_config_dir() + "data/" + m_title_id + "/config.yml" })
|
||||
{
|
||||
LOG_NOTICE(LOADER, "Applying custom config (config.yml)");
|
||||
LOG_NOTICE(LOADER, "Applying custom config %s", fs::get_config_dir() + "data/" + m_title_id + "/config.yml");
|
||||
cfg::root.from_string(cfg_file.to_string());
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue