diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-25 20:48:35 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-25 20:48:35 +0300 |
commit | 5994a6198ac35ea149a7211213dc296ee7406f44 (patch) | |
tree | eec718594fd23da29f9d39e4c0fb00409d514a8e /src/gui/theme.cpp | |
parent | 1b1a7cea1c6b81438bacc86b93cb80a78430790f (diff) | |
download | ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.gz ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.bz2 ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.tar.xz ManaVerse-5994a6198ac35ea149a7211213dc296ee7406f44.zip |
Move imageset load function from resourcemanager into separate file.
Diffstat (limited to 'src/gui/theme.cpp')
-rw-r--r-- | src/gui/theme.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/theme.cpp b/src/gui/theme.cpp index 638b57c28..d17f1ae85 100644 --- a/src/gui/theme.cpp +++ b/src/gui/theme.cpp @@ -38,6 +38,7 @@ #include "resources/dye/dyepalette.h" #include "resources/loaders/imageloader.h" +#include "resources/loaders/imagesetloader.h" #include "resources/loaders/subimageloader.h" #include "resources/resourcemanager/resourcemanager.h" @@ -650,7 +651,7 @@ Image *Theme::getImageFromTheme(const std::string &path) ImageSet *Theme::getImageSetFromTheme(const std::string &path, const int w, const int h) { - return resourceManager->getImageSet(resolveThemePath(path), w, h); + return Loader::getImageSet(resolveThemePath(path), w, h); } static int readColorType(const std::string &type) |