logic condition to check only 'x' lines had not been given

This commit is contained in:
Holger Vogt 2021-06-18 16:28:16 +02:00
parent d0ca6a4773
commit 68e51848a4
1 changed files with 1 additions and 1 deletions

View File

@ -695,7 +695,7 @@ void inp_get_w_l_x(struct card* card) {
continue;
}
/* only subcircuit invocations */
if (*curr_line != 'x' && !newcompat.hs && !newcompat.spe) {
if (*curr_line != 'x' || (!newcompat.hs && !newcompat.spe)) {
continue;
}