summaryrefslogtreecommitdiff
path: root/src/resources/map/maplayer.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-04 03:55:27 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-04 03:55:27 +0300
commit8532b189d874c719f8bda0fcf8d2e427cb2b2863 (patch)
treefc350b64457fb482710d8981ff0fe710c8994ad1 /src/resources/map/maplayer.cpp
parent819681f76bdabe1f4fc379007956d8118aa39228 (diff)
downloadplus-8532b189d874c719f8bda0fcf8d2e427cb2b2863.tar.gz
plus-8532b189d874c719f8bda0fcf8d2e427cb2b2863.tar.bz2
plus-8532b189d874c719f8bda0fcf8d2e427cb2b2863.tar.xz
plus-8532b189d874c719f8bda0fcf8d2e427cb2b2863.zip
Fix code style.
Diffstat (limited to 'src/resources/map/maplayer.cpp')
-rw-r--r--src/resources/map/maplayer.cpp6
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);
}