diff options
Diffstat (limited to 'src/resources/db/sounddb.cpp')
-rw-r--r-- | src/resources/db/sounddb.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/db/sounddb.cpp b/src/resources/db/sounddb.cpp index 8e1d22bc0..09b7af65d 100644 --- a/src/resources/db/sounddb.cpp +++ b/src/resources/db/sounddb.cpp @@ -44,7 +44,9 @@ void SoundDB::load() void SoundDB::loadXmlFile(const std::string &fileName) { - XML::Document *doc = new XML::Document(fileName, UseResman_true, false); + XML::Document *doc = new XML::Document(fileName, + UseResman_true, + SkipError_false); const XmlNodePtrConst root = doc->rootNode(); if (!root || !xmlNameEqual(root, "sounds")) |