summaryrefslogtreecommitdiff
path: root/src/simpleanimation.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-22 14:14:34 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-22 14:14:34 +0300
commitda05d9dd98315378bdded216184294f376643191 (patch)
treeffc4b984c73c3bb68d26a1df6481634254075744 /src/simpleanimation.cpp
parentec856b2026c7ceecab5f74942bb36661d7c6ae67 (diff)
downloadManaVerse-da05d9dd98315378bdded216184294f376643191.tar.gz
ManaVerse-da05d9dd98315378bdded216184294f376643191.tar.bz2
ManaVerse-da05d9dd98315378bdded216184294f376643191.tar.xz
ManaVerse-da05d9dd98315378bdded216184294f376643191.zip
Use resource manager as global variable.
Diffstat (limited to 'src/simpleanimation.cpp')
-rw-r--r--src/simpleanimation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/simpleanimation.cpp b/src/simpleanimation.cpp
index 2943d5d92..90f39fbc9 100644
--- a/src/simpleanimation.cpp
+++ b/src/simpleanimation.cpp
@@ -156,8 +156,8 @@ void SimpleAnimation::initializeAnimation(const XmlNodePtr animationNode,
if (!imagePath.empty() && !dyePalettes.empty())
Dye::instantiate(imagePath, dyePalettes);
- const ImageSet *const imageset = ResourceManager::getInstance()
- ->getImageSet(XML::getProperty(animationNode, "imageset", ""),
+ const ImageSet *const imageset = resourceManager->getImageSet(
+ XML::getProperty(animationNode, "imageset", ""),
XML::getProperty(animationNode, "width", 0),
XML::getProperty(animationNode, "height", 0));