Browse Source

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

pre-master-46
Holger Vogt 5 years ago
parent
commit
68e51848a4
  1. 2
      src/frontend/inpcom.c

2
src/frontend/inpcom.c

@ -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;
}

Loading…
Cancel
Save