mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Config: Make Load() and Save() slightly faster
Only invoke config changed callbacks from Config::Save, not Layer::Save. The latter results in callbacks being called once per layer, up to 7 times per save.
This commit is contained in:
parent
da03ff2e25
commit
93f49b1ca4
2 changed files with 2 additions and 2 deletions
|
@ -62,12 +62,14 @@ void Load()
|
|||
{
|
||||
for (auto& layer : s_layers)
|
||||
layer.second->Load();
|
||||
InvokeConfigChangedCallbacks();
|
||||
}
|
||||
|
||||
void Save()
|
||||
{
|
||||
for (auto& layer : s_layers)
|
||||
layer.second->Save();
|
||||
InvokeConfigChangedCallbacks();
|
||||
}
|
||||
|
||||
void Init()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue