One last change for issue #50

This commit is contained in:
Dan Moore 2021-01-13 21:38:14 -08:00 committed by Tim Edwards
parent 3712aa70a6
commit 86c0b7dbbd
1 changed files with 1 additions and 1 deletions

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! */