mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 19:45:20 +00: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)
|
||||
{
|
||||
// Ignore every node in Log subsection
|
||||
if (level == 0 && cfg_node->get_name() == "Log")
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
YAML::Node next_node = yml_node[key];
|
||||
search_level(next_level, next_node, keys, cfg_node);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue