Browse Source

Remove the "type" declaration from a .model line

pre-master-46
Holger Vogt 4 years ago
parent
commit
242a1d796a
  1. 11
      src/frontend/inpcom.c

11
src/frontend/inpcom.c

@ -9660,6 +9660,17 @@ static void rem_mfg_from_models(struct card *deck)
start++;
}
}
start = strstr(curr_line, "type=");
if (start) {
end = nexttok(start);
if (*end == '\0')
*start = '\0';
else
while (start < end) {
*start = ' ';
start++;
}
}
}
}
}

Loading…
Cancel
Save