Index: alien_formats/altium/pcbdoc_bin.c =================================================================== --- alien_formats/altium/pcbdoc_bin.c (revision 35485) +++ alien_formats/altium/pcbdoc_bin.c (revision 35486) @@ -158,6 +158,18 @@ return 0; } +int pcbdoc_bin_parse_polygons6(rnd_hidlib_t *hidlib, altium_tree_t *tree, ucdf_file_t *fp, altium_buf_t *tmp) +{ + for(;;) { + long len = read_rec_l4b(fp, tmp); + if (len <= 0) + return len; + if (pcbdoc_bin_parse_ascii(hidlib, tree, "Polygon", tmp) != 0) + return -1; + } + return 0; +} + int pcbdoc_bin_parse_classes6(rnd_hidlib_t *hidlib, altium_tree_t *tree, ucdf_file_t *fp, altium_buf_t *tmp) { for(;;) {