X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=pgntags.c;fp=pgntags.c;h=2d9cfb862c266951b89e21004fec32b321b7598f;hb=40269944bc042aced158ae854027ef3a80344fb3;hp=2caed095603db3b46d651ce1d18446b2d7748592;hpb=3e9bdc4b4412453619340999d96d245c7f5f8b74;p=xboard.git diff --git a/pgntags.c b/pgntags.c index 2caed09..2d9cfb8 100644 --- a/pgntags.c +++ b/pgntags.c @@ -116,6 +116,9 @@ ParsePGNTag (char *tag, GameInfo *gameInfo) /* xboard-defined extension */ gameInfo->variant = StringToVariant(value); success = TRUE; + } else if (StrCaseCmp(name, "VariantMen") == 0) { + /* for now ignore this tag, as we have no method yet */ + /* for assigning the pieces to XBoard pictograms */ } else if (StrCaseCmp(name, PGN_OUT_OF_BOOK) == 0) { /* [AS] Out of book annotation */ success = StrSavePtr(value, &gameInfo->outOfBook) != NULL; @@ -161,7 +164,7 @@ PrintPGNTags (FILE *fp, GameInfo *gameInfo) if (gameInfo->variant != VariantNormal) fprintf(fp, "[Variant \"%s\"]\n", VariantName(gameInfo->variant)); if (*(p = CollectPieceDescriptors())) - fprintf(fp, "[Pieces \"%s\"]\n", p); + fprintf(fp, "[VariantMen \"%s\"]\n", p); if (gameInfo->extraTags) fputs(gameInfo->extraTags, fp); }