diff options
Diffstat (limited to 'src/effectmanager.cpp')
-rw-r--r-- | src/effectmanager.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/effectmanager.cpp b/src/effectmanager.cpp index 1a9901beb..e91e52eff 100644 --- a/src/effectmanager.cpp +++ b/src/effectmanager.cpp @@ -41,14 +41,15 @@ EffectManager::EffectManager() : mTimers() { logger->log1("Effects are now loading"); - loadXmlFile(paths.getStringValue("effectsFile")); - loadXmlFile(paths.getStringValue("effectsPatchFile")); + loadXmlFile(paths.getStringValue("effectsFile"), SkipError_false); + loadXmlFile(paths.getStringValue("effectsPatchFile"), SkipError_true); loadXmlDir("effectsPatchDir", loadXmlFile); } -void EffectManager::loadXmlFile(const std::string &fileName) +void EffectManager::loadXmlFile(const std::string &fileName, + const SkipError skipError) { - XML::Document doc(fileName, UseResman_true, SkipError_false); + XML::Document doc(fileName, UseResman_true, skipError); const XmlNodePtrConst root = doc.rootNode(); if (!root || @@ -64,7 +65,7 @@ void EffectManager::loadXmlFile(const std::string &fileName) { const std::string name = XML::getProperty(node, "name", ""); if (!name.empty()) - loadXmlFile(name); + loadXmlFile(name, skipError); continue; } else if (xmlNameEqual(node, "effect")) |