mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 06:51:26 +12:00
Ignore Log subsection for config obsolete check
This commit is contained in:
parent
5e158bd3f2
commit
276ee81da8
1 changed files with 6 additions and 0 deletions
|
@ -201,6 +201,12 @@ bool emu_settings::ValidateSettings(bool cleanup)
|
||||||
|
|
||||||
if (cfg_node)
|
if (cfg_node)
|
||||||
{
|
{
|
||||||
|
// Ignore every node in Log subsection
|
||||||
|
if (level == 0 && cfg_node->get_name() == "Log")
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
YAML::Node next_node = yml_node[key];
|
YAML::Node next_node = yml_node[key];
|
||||||
search_level(next_level, next_node, keys, cfg_node);
|
search_level(next_level, next_node, keys, cfg_node);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue