mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-25 23:25:41 +00:00
LayeredSettingsInterface: Fix reversed section/key
This commit is contained in:
parent
b0d685ede5
commit
e63b2eec38
|
@ -139,7 +139,7 @@ bool LayeredSettingsInterface::ContainsValue(const char* section, const char* ke
|
||||||
{
|
{
|
||||||
if (SettingsInterface* sif = m_layers[layer]; sif != nullptr)
|
if (SettingsInterface* sif = m_layers[layer]; sif != nullptr)
|
||||||
{
|
{
|
||||||
if (sif->ContainsValue(key, section))
|
if (sif->ContainsValue(section, key))
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue