mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-16 12:08:52 +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
@ -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…
Reference in New Issue
Block a user