mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 15:01:28 +12:00
patch manager
This commit is contained in:
parent
1668900fb8
commit
2dca8d84e1
14 changed files with 1318 additions and 190 deletions
|
@ -220,7 +220,7 @@ void Emulator::Init()
|
|||
make_path_verbose(fs::get_config_dir() + "captures/");
|
||||
|
||||
// Initialize patch engine
|
||||
g_fxo->init<patch_engine>()->append(fs::get_config_dir() + "/patch.yml");
|
||||
g_fxo->init<patch_engine>()->append_global_patches();
|
||||
}
|
||||
|
||||
namespace
|
||||
|
@ -914,7 +914,7 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
|
|||
}
|
||||
|
||||
// Load patches from different locations
|
||||
g_fxo->get<patch_engine>()->append(fs::get_config_dir() + "data/" + m_title_id + "/patch.yml");
|
||||
g_fxo->get<patch_engine>()->append_title_patches(m_title_id);
|
||||
|
||||
// Mount all devices
|
||||
const std::string emu_dir = GetEmuDir();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue