From 5400a3120742494281f6cce43545657432a08f25 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 2 Apr 2018 04:11:12 +0300 Subject: Add some missing brackets in macroses. --- src/resources/map/map.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/resources/map') diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp index b37e2af9b..810791222 100644 --- a/src/resources/map/map.cpp +++ b/src/resources/map/map.cpp @@ -539,12 +539,12 @@ void Map::draw(Graphics *restrict const graphics, } #define fillCollision(collision, color) \ - if (x < endX && mMetaTiles[tilePtr].blockmask & collision)\ + if (x < endX && mMetaTiles[tilePtr].blockmask & (collision))\ {\ width = mapTileSize;\ for (int x2 = tilePtr + 1; x < endX; x2 ++)\ {\ - if (!(mMetaTiles[x2].blockmask & collision))\ + if (!(mMetaTiles[x2].blockmask & (collision)))\ break;\ width += mapTileSize;\ x ++;\ -- cgit v1.2.3-60-g2f50