From 7afa60701d62763159e9e4546f6f11430d5c3cb8 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 11 Jan 2017 02:01:33 +0300 Subject: Fix maplayer issue detected by tests. --- src/resources/map/maplayer.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/resources/map/maplayer.cpp') diff --git a/src/resources/map/maplayer.cpp b/src/resources/map/maplayer.cpp index c481f8e33..90ef48e4a 100644 --- a/src/resources/map/maplayer.cpp +++ b/src/resources/map/maplayer.cpp @@ -109,9 +109,6 @@ void MapLayer::draw(Graphics *const graphics, const int scrollX, const int scrollY) const restrict { - if (!localPlayer) - return; - BLOCK_START("MapLayer::draw") startX -= mX; startY -= mY; @@ -140,7 +137,7 @@ void MapLayer::draw(Graphics *const graphics, TileInfo *tilePtr = &mTiles[CAST_SIZE(x0 + yWidth)]; if (tilePtr->isEnabled == false) { - if (x0 + tilePtr->nextTile >= endX) + if (x0 + tilePtr->nextTile + 1 >= endX) { continue; } @@ -567,7 +564,7 @@ void MapLayer::drawFringe(Graphics *const graphics, std::min(x0 + tilePtr->nextTile + 1, endX), scrollX, scrollY); - if (x0 + tilePtr->nextTile >= endX) + if (x0 + tilePtr->nextTile + 1 >= endX) { continue; } @@ -657,7 +654,7 @@ void MapLayer::drawFringe(Graphics *const graphics, TileInfo *tilePtr = &mTiles[CAST_SIZE(x0 + yWidth)]; if (tilePtr->isEnabled == false) { - if (x0 + tilePtr->nextTile >= endX) + if (x0 + tilePtr->nextTile + 1 >= endX) continue; x0 += tilePtr->nextTile + 1; tilePtr = &mTiles[CAST_SIZE(x0 + yWidth)]; -- cgit v1.2.3-70-g09d2