mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-12 10:37:02 +00:00
Fix regression with saving/loading child configs
Seems like a minor thing slipped under the radar in commit 67de63bed6
This commit is contained in:
parent
67de63bed6
commit
2d74bcfbfa
1 changed files with 2 additions and 2 deletions
|
|
@ -480,8 +480,8 @@ class XMLChildConfig
|
||||||
{
|
{
|
||||||
m_parentConfig = {
|
m_parentConfig = {
|
||||||
.lock = [getParentConfig]() { return getParentConfig().Lock(); },
|
.lock = [getParentConfig]() { return getParentConfig().Lock(); },
|
||||||
.save = [getParentConfig]() { return getParentConfig().Load(); },
|
.save = [getParentConfig]() { return getParentConfig().Save(); },
|
||||||
.load = [getParentConfig]() { return getParentConfig().Save(); },
|
.load = [getParentConfig]() { return getParentConfig().Load(); },
|
||||||
};
|
};
|
||||||
|
|
||||||
auto configParser = std::make_pair(
|
auto configParser = std::make_pair(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue