Collection's settings.conf file is no longer required. Since the

introduction of merged collections and menu based collections, the
requirement for the presence of a settings.conf file has become obsolete.
This commit is contained in:
Pieter Hulshoff 2017-01-20 15:01:58 +01:00
parent c42715c250
commit a116306eeb

View File

@ -187,11 +187,9 @@ bool ImportConfiguration(Configuration *c)
std::string settingsFile = Utils::combinePath(collectionsPath, collection, "settings.conf");
if(!c->import(collection, prefix, settingsFile))
if(!c->import(collection, prefix, settingsFile, false))
{
Logger::write(Logger::ZONE_ERROR, "RetroFE", "Could not import \"" + settingsFile + "\"");
closedir(dp);
return false;
Logger::write(Logger::ZONE_INFO, "RetroFE", "Could not import \"" + settingsFile + "\"");
}
}