Corrected error in the extraction for magic-8.2 (only) that appears

to have come from an unfinished (or at least unchecked) development
effort on improving the checks for DRC interaction errors (which
also affects extraction).
This commit is contained in:
Tim Edwards 2017-12-14 16:55:06 -05:00
parent 8faf572604
commit 4af736b18a
1 changed files with 1 additions and 2 deletions

View File

@ -91,7 +91,6 @@ drcFindOtherCells(tile, area)
Tile *tile; /* Tile in subcell plane. */
Rect *area; /* Area in which to include interactions. */
{
Rect r;
CellUse *use;
CellTileBody *ctbptr = (CellTileBody *) tile->ti_body;
@ -104,7 +103,7 @@ drcFindOtherCells(tile, area)
ctbptr = ctbptr->ctb_next)
{
use = ctbptr->ctb_use;
GeoInclude(&use->cu_bbox, &r);
GeoInclude(&use->cu_bbox, area);
}
return 0;
}