diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-25 19:32:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-25 19:32:59 +0300 |
commit | 1b1a7cea1c6b81438bacc86b93cb80a78430790f (patch) | |
tree | d23f4e0beea6b4e5c570afafd9ad9de6b68ba812 /src/resources/item/item.cpp | |
parent | bb8be1acea37f09c134d7d4042869a679cf8a12b (diff) | |
download | plus-1b1a7cea1c6b81438bacc86b93cb80a78430790f.tar.gz plus-1b1a7cea1c6b81438bacc86b93cb80a78430790f.tar.bz2 plus-1b1a7cea1c6b81438bacc86b93cb80a78430790f.tar.xz plus-1b1a7cea1c6b81438bacc86b93cb80a78430790f.zip |
Change namespace in resources loaders from other to Loader.
Diffstat (limited to 'src/resources/item/item.cpp')
-rw-r--r-- | src/resources/item/item.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/item/item.cpp b/src/resources/item/item.cpp index 8400e2675..9d3a1b3f8 100644 --- a/src/resources/item/item.cpp +++ b/src/resources/item/item.cpp @@ -100,7 +100,7 @@ void Item::setId(const int id, const std::string dye = combineDye2(paths.getStringValue( "itemIcons").append(info.getDisplay().image), info.getDyeIconColorsString(color)); - mImage = ImageLoader::getImage(dye); + mImage = Loader::getImage(dye); if (!mImage) { @@ -121,7 +121,7 @@ Image *Item::getImage(const int id, const ItemColor color) { const ItemInfo &info = ItemDB::get(id); - Image *image = ImageLoader::getImage(combineDye2(paths.getStringValue( + Image *image = Loader::getImage(combineDye2(paths.getStringValue( "itemIcons").append(info.getDisplay().image), info.getDyeIconColorsString(color))); |