mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06: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:
@ -115,7 +115,6 @@ void Layer::Load()
|
||||
if (m_loader)
|
||||
m_loader->Load(this);
|
||||
m_is_dirty = false;
|
||||
InvokeConfigChangedCallbacks();
|
||||
}
|
||||
|
||||
void Layer::Save()
|
||||
@ -125,7 +124,6 @@ void Layer::Save()
|
||||
|
||||
m_loader->Save(this);
|
||||
m_is_dirty = false;
|
||||
InvokeConfigChangedCallbacks();
|
||||
}
|
||||
|
||||
LayerType Layer::GetLayer() const
|
||||
|
Reference in New Issue
Block a user