We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a0ac7d commit 7c919f7Copy full SHA for 7c919f7
1 file changed
src/Battlescape/Map.cpp
@@ -1064,7 +1064,7 @@ void Map::drawTerrain(Surface *surface)
1064
if (_previewSetting & PATH_TU_COST && tile->getTUMarker() > -1)
1065
{
1066
int off = tile->getTUMarker() > 9 ? 4 : 2;
1067
- if (!(_previewSetting & PATH_ARROWS) || _save->getSelectedUnit() && _save->getSelectedUnit()->getArmor()->getSize() > 1)
+ if (!(_previewSetting & PATH_ARROWS) || (_save->getSelectedUnit() && _save->getSelectedUnit()->getArmor()->getSize() > 1))
1068
1069
_numWaypid->setBordered(true); // give it a border for the pathfinding display, makes it more visible on snow, etc.
1070
off += 1;
0 commit comments