Changed: Minor changes

This commit is contained in:
kervala 2016-01-05 12:59:40 +01:00
parent 0d0e08948e
commit 8fd5f96d83

View file

@ -2160,14 +2160,14 @@ void CProximityMapBuffer::generateZoneProximityMap(const CProximityZone& zone,TB
#define TEST_MOVE(xoffs,yoffs,newDist)\
{\
if (((uint32)(x+(xoffs))<zoneWidth) && ((uint32)(y+(yoffs))<zoneHeight))\
if (((uint32)(x+xoffs)<zoneWidth) && ((uint32)(y+yoffs)<zoneHeight))\
{\
uint32 newVal= val+(xoffs)+((yoffs)*zoneWidth);\
uint32 newVal= val+xoffs+(yoffs*zoneWidth);\
bool isInterior = ((zoneBuffer[newVal] == InteriorValue && newDist > BigValue) || (zoneBuffer[newVal] == ValueBorder && newDist > BigValue));\
if (zoneBuffer[newVal]>(newDist) && !isInterior)\
if (zoneBuffer[newVal] > newDist && !isInterior)\
{\
zoneBuffer[newVal]=(newDist);\
vects[(newDist)&15].push_back(newVal);\
zoneBuffer[newVal] = newDist;\
vects[newDist & 15].push_back(newVal);\
++entriesToTreat;\
}\
}\