diff options
Diffstat (limited to 'src/resources/map/maplayer.cpp')
-rw-r--r-- | src/resources/map/maplayer.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/resources/map/maplayer.cpp b/src/resources/map/maplayer.cpp index deaeab9de..57e49b3eb 100644 --- a/src/resources/map/maplayer.cpp +++ b/src/resources/map/maplayer.cpp @@ -40,8 +40,6 @@ #include "resources/map/metatile.h" #include "resources/map/speciallayer.h" -#include "utils/checkutils.h" - #include "debug.h" MapLayer::MapLayer(const std::string &name, @@ -558,16 +556,14 @@ void MapLayer::drawFringe(Graphics *const graphics, for (int x = x0; x < endX; x++, tilePtr++) { const int x32 = x * mapTileSize; - int c = 0; const Image *const img = tilePtr->image; if (mSpecialFlag || img->mBounds.h <= mapTileSize) { const int px = x32 + dx; const int py = py0 - img->mBounds.h; - c = tilePtr->count; - if (c == 0) + if (tilePtr->count == 0) { graphics->drawImage(img, px, py); } |