From 6cf5f65b516a8dde664e5c7f7760cb91fae2b311 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Wed, 9 Sep 2020 12:18:09 -0400 Subject: [PATCH] Corrected a tiny but bad error in the extract section reading of the tech file that completely undermined the ability to describe an asymmetric device (different materials for terminals). --- VERSION | 2 +- extract/ExtTech.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index c1cda334..5b22f009 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.54 +8.3.55 diff --git a/extract/ExtTech.c b/extract/ExtTech.c index 61d65a61..2b1e8933 100644 --- a/extract/ExtTech.c +++ b/extract/ExtTech.c @@ -2280,7 +2280,7 @@ ExtTechLine(sectionName, argc, argv) /* terminals */ for (i = iterm; i < iterm + nterm; i++) - DBTechNoisyNameMask(argv[iterm], &termtypes[i - iterm]); + DBTechNoisyNameMask(argv[i], &termtypes[i - iterm]); termtypes[nterm] = DBZeroTypeBits; if (nterm == 0) i++;