mirror of
https://github.com/RTimothyEdwards/magic.git
synced 2026-08-22 14:17:43 +02:00
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:
+2
-2
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user