mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 05:45:38 +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 (sif->ContainsValue(key, section))
|
||||
if (sif->ContainsValue(section, key))
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue