From d09b0e8c51d9b55373a9e22083c3e80dc0ed134b Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Tue, 14 Nov 2023 20:10:57 -0500 Subject: [PATCH] Corrected an error that can prevent capacitances to substrate from being output if the substrate node is declared as a port. --- VERSION | 2 +- extflat/EFbuild.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 3fdb0d21..efcf0035 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.447 +8.3.448 diff --git a/extflat/EFbuild.c b/extflat/EFbuild.c index 32257ff1..85bd1cb4 100644 --- a/extflat/EFbuild.c +++ b/extflat/EFbuild.c @@ -188,7 +188,10 @@ efBuildNode(def, isSubsnode, isDevSubsnode, isExtNode, nodeName, nodeCap, newnode->efnode_flags |= EF_SUBS_NODE; if (isSubsnode == TRUE) + { newnode->efnode_flags |= EF_GLOB_SUBS_NODE; + EFCompat = FALSE; + } /* The node is a duplicate port name at a different location. */ /* If EFSaveLocs is TRUE, then save the layer and position in */