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:
parent
8faf572604
commit
4af736b18a
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue