summaryrefslogtreecommitdiff
path: root/src/utils/xml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/xml.cpp')
-rw-r--r--src/utils/xml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp
index 33173b3ee..487c177bb 100644
--- a/src/utils/xml.cpp
+++ b/src/utils/xml.cpp
@@ -76,7 +76,7 @@ static void xmlErrorLogger(void *ctx A_UNUSED, const char *msg, ...)
namespace XML
{
Document::Document(const std::string &filename,
- const bool useResman,
+ const UseResman useResman,
const bool skipError) :
mDoc(nullptr),
mIsValid(false)
@@ -89,7 +89,7 @@ namespace XML
int size = 0;
char *data = nullptr;
valid = true;
- if (useResman)
+ if (useResman == UseResman_true)
{
data = static_cast<char*>(PhysFs::loadFile(
filename.c_str(), size));