One last change for issue #50

This commit is contained in:
Dan Moore
2021-01-14 12:14:40 -05:00
committed by Tim Edwards
parent 3712aa70a6
commit 86c0b7dbbd
+1 -1
View File
@@ -3938,7 +3938,7 @@ extNodeAreaFunc(tile, arg)
GEOCLIP(&r, extNodeClipArea);
area = (dlong)(r.r_xtop - r.r_xbot) * (dlong)(r.r_ytop - r.r_ybot);
}
else area = (dlong)TILEAREA(tile);
else area = (dlong)(TOP(tile) - BOTTOM(tile)) * (dlong)(RIGHT(tile) - LEFT(tile));
if (IsSplit(tile)) area /= 2; /* Split tiles are 1/2 area! */