Implemented the fix to an expression that should have been logical-
AND and not bitwise-AND, as pointed out in PR #376 by Darryl Miles.
This commit is contained in:
parent
a60259ab63
commit
8ebad7d1a9
|
|
@ -1643,7 +1643,7 @@ lefWriteMacro(def, f, scale, setback, pinonly, toplayer, domaster)
|
|||
|
||||
if (toplayer && (pNum != pTop))
|
||||
{
|
||||
if (domaster & (pmask != 0))
|
||||
if (domaster && (pmask != 0))
|
||||
{
|
||||
if (!PlaneMaskHasPlane(pmask, pNum))
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue