Corrected invalid logic in the interpetation of (cif/gds) label

options "text", "port", and "noport" in the techfile.  The
incorrect interpretation was preventing backwards compatibility,
such that ports would not be output on GDS layers if the "port"
option was not used.
This commit is contained in:
Tim Edwards 2018-11-12 13:25:05 -05:00
parent 648b9e54e6
commit 66603cdb53
1 changed files with 2 additions and 2 deletions

View File

@ -889,9 +889,9 @@ CIFTechLine(sectionName, argc, argv)
{
if (TTMaskHasType(&mask, i))
{
if (noPort == FALSE)
if (portOnly != TRUE)
CIFCurStyle->cs_labelLayer[i] = CIFCurStyle->cs_nLayers-1;
if (portOnly == TRUE)
if (noPort != TRUE)
CIFCurStyle->cs_portLayer[i] = CIFCurStyle->cs_nLayers-1;
}
}