diff options
| author | spycrab <spycrab@users.noreply.github.com> | 2018-05-23 20:39:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-23 20:39:23 +0200 |
| commit | 7620e1d5f874e20dd6303c452fbceab16b44a102 (patch) | |
| tree | adbc59087af68b601f49cec9c26a1f93eff2584c /Source/Core/Common/Config/Config.cpp | |
| parent | 052ac166501d9f621f6d2cf5a37c988369736a54 (diff) | |
| parent | c99ac407009e0706141cf9b1616d160ca1ffc340 (diff) | |
Merge pull request #6950 from leoetlino/nand-path
Port FS, SD and dump path to onion config
Diffstat (limited to 'Source/Core/Common/Config/Config.cpp')
| -rw-r--r-- | Source/Core/Common/Config/Config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp index 7e1fc904d9..30215aec06 100644 --- a/Source/Core/Common/Config/Config.cpp +++ b/Source/Core/Common/Config/Config.cpp @@ -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() |
