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:
Tim Edwards 2025-02-22 21:15:45 -05:00
parent a60259ab63
commit 8ebad7d1a9
1 changed files with 1 additions and 1 deletions

View File

@ -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;