diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-06 23:27:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-06 23:27:42 +0300 |
commit | 2bca0787182eb1637cd82fc246bc19578e90ca09 (patch) | |
tree | 046bc50c0cf38c3f7ad86798556a723e62df5a68 /src/resources/spritedef.cpp | |
parent | 6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6 (diff) | |
download | plus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.gz plus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.bz2 plus-2bca0787182eb1637cd82fc246bc19578e90ca09.tar.xz plus-2bca0787182eb1637cd82fc246bc19578e90ca09.zip |
Add strong typed bool type SkipError.
Diffstat (limited to 'src/resources/spritedef.cpp')
-rw-r--r-- | src/resources/spritedef.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp index d22cc7899..9dae7289e 100644 --- a/src/resources/spritedef.cpp +++ b/src/resources/spritedef.cpp @@ -87,7 +87,9 @@ SpriteDef *SpriteDef::load(const std::string &animationFile, if (pos != std::string::npos) palettes = animationFile.substr(pos + 1); - XML::Document doc(animationFile.substr(0, pos), UseResman_true, false); + XML::Document doc(animationFile.substr(0, pos), + UseResman_true, + SkipError_false); XmlNodePtrConst rootNode = doc.rootNode(); if (!rootNode || !xmlNameEqual(rootNode, "sprite")) @@ -434,7 +436,7 @@ void SpriteDef::includeSprite(const XmlNodePtr includeNode, const int variant) } mProcessedFiles.insert(filename); - XML::Document doc(filename, UseResman_true, false); + XML::Document doc(filename, UseResman_true, SkipError_false); const XmlNodePtr rootNode = doc.rootNode(); if (!rootNode || !xmlNameEqual(rootNode, "sprite")) |