summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-05-06 23:13:00 +0300
committerAndrei Karas <akaras@inbox.ru>2015-05-06 23:13:00 +0300
commit6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6 (patch)
treec31a7e703e9452f667ef5a7f0958375ba388c50e /src/client.cpp
parenta86bdc28fb8bc8a70c6a19523789495d87c7a56d (diff)
downloadplus-6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6.tar.gz
plus-6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6.tar.bz2
plus-6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6.tar.xz
plus-6c9ef6af1b72b74b9ab94cc1c1349c3cd70c8be6.zip
Add strong types bool type UseResman.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client.cpp b/src/client.cpp
index a9354342c..98fa33e18 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1226,7 +1226,7 @@ int Client::gameExec()
}
logger->log("Init paths");
- paths.init("paths.xml", true);
+ paths.init("paths.xml", UseResman_true);
paths.setDefaultValues(getPathsDefaults());
if (!SpriteReference::Empty)
{
@@ -1726,7 +1726,7 @@ void Client::action(const ActionEvent &event)
void Client::initFeatures()
{
- features.init(paths.getStringValue("featuresFile"), true);
+ features.init(paths.getStringValue("featuresFile"), UseResman_true);
features.setDefaultValues(getFeaturesDefaults());
settings.fixDeadAnimation = features.getBoolValue("fixDeadAnimation");
}