diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-19 18:29:03 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-19 18:29:03 +0300 |
commit | 7b6b389fe156b8ff1fc1f35ee776a2e65f160921 (patch) | |
tree | 81e893b9e57ff483492df3dd4b645157a02173b3 /src/resources/map/maplayer.cpp | |
parent | f3fdd048e6265ab2c6e88ddff21dffd9409c03db (diff) | |
download | manaverse-7b6b389fe156b8ff1fc1f35ee776a2e65f160921.tar.gz manaverse-7b6b389fe156b8ff1fc1f35ee776a2e65f160921.tar.bz2 manaverse-7b6b389fe156b8ff1fc1f35ee776a2e65f160921.tar.xz manaverse-7b6b389fe156b8ff1fc1f35ee776a2e65f160921.zip |
Move mapitemtype into separate file.
Diffstat (limited to 'src/resources/map/maplayer.cpp')
-rw-r--r-- | src/resources/map/maplayer.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/map/maplayer.cpp b/src/resources/map/maplayer.cpp index 97d3a8020..a5f2f056d 100644 --- a/src/resources/map/maplayer.cpp +++ b/src/resources/map/maplayer.cpp @@ -34,6 +34,7 @@ #include "render/graphics.h" #include "resources/image.h" +#include "resources/mapitemtype.h" #include "resources/map/mapitem.h" #include "resources/map/maprowvertexes.h" @@ -488,13 +489,13 @@ void MapLayer::drawFringe(Graphics *const graphics, int startX, int startY, if (item1 || item2) { const int px2 = px1 + (x1 * mapTileSize); - if (item1 && item1->mType != MapItem::EMPTY) + if (item1 && item1->mType != MapItemType::EMPTY) { item1->draw(graphics, px2, py1, mapTileSize, mapTileSize); } - if (item2 && item2->mType != MapItem::EMPTY) + if (item2 && item2->mType != MapItemType::EMPTY) { item2->draw(graphics, px2, py1, mapTileSize, mapTileSize); |