X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=blobdiff_plain;f=pgntags.c;h=9833d1069db16c680eff7ff4b9aa4f79bffd8901;hp=b40c1980ecbb5dca65f65cb9feaf6eb5e4df82be;hb=HEAD;hpb=0278ebc80411a20fd23303156285e55ce8d2b0a5 diff --git a/pgntags.c b/pgntags.c index b40c198..9833d10 100644 --- a/pgntags.c +++ b/pgntags.c @@ -119,9 +119,7 @@ ParsePGNTag (char *tag, GameInfo *gameInfo) if(*value && strcmp(value, engineVariant)) // keep current engine-defined variant if it matches gameInfo->variant = StringToVariant(value); } else if (StrCaseCmp(name, "VariantMen") == 0) { - /* for now ignore this tag, as we have no method yet */ - /* for assigning the pieces to XBoard pictograms */ - success = TRUE; + success = LoadPieceDesc(value); } else if (StrCaseCmp(name, PGN_OUT_OF_BOOK) == 0) { /* [AS] Out of book annotation */ success = StrSavePtr(value, &gameInfo->outOfBook) != NULL;