mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
Ignore Log subsection for config obsolete check
This commit is contained in:
parent
5e158bd3f2
commit
276ee81da8
@ -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…
Reference in New Issue
Block a user