mirror of https://github.com/KLayout/klayout.git
Fixed a bug in the Spice writer implementation (res3 not considered)
This commit is contained in:
parent
2e63628ddd
commit
ef22ead019
|
|
@ -130,7 +130,7 @@ void NetlistSpiceWriterDelegate::write_device (const db::Device &dev) const
|
||||||
os << format_name (dev.device_class ()->name ());
|
os << format_name (dev.device_class ()->name ());
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if (res) {
|
} else if (res || res3) {
|
||||||
|
|
||||||
os << "R";
|
os << "R";
|
||||||
os << format_name (dev.expanded_name ());
|
os << format_name (dev.expanded_name ());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue