diff options
Diffstat (limited to 'src/resources/sprite/animatedsprite.cpp')
-rw-r--r-- | src/resources/sprite/animatedsprite.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/resources/sprite/animatedsprite.cpp b/src/resources/sprite/animatedsprite.cpp index 6ada9c394..8a60de0f3 100644 --- a/src/resources/sprite/animatedsprite.cpp +++ b/src/resources/sprite/animatedsprite.cpp @@ -32,6 +32,8 @@ #include "resources/animation/animation.h" +#include "resources/loaders/spritedefloader.h" + #include "resources/resourcemanager/resourcemanager.h" #include "resources/sprite/animationdelayload.h" @@ -67,7 +69,7 @@ AnimatedSprite::AnimatedSprite(SpriteDef *restrict const sprite) : AnimatedSprite *AnimatedSprite::load(const std::string &restrict filename, const int variant) { - SpriteDef *restrict const s = resourceManager->getSprite( + SpriteDef *restrict const s = Loader::getSprite( filename, variant); if (!s) return nullptr; |