From 0180646c228761b44d51d24603f8fe14002aa5c6 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Sat, 22 Apr 2006 11:26:25 -0400 Subject: [PATCH] libchess: Fix the draw game result tag. 1/2-1/2 not 1-2/1-2. --- libchess/move.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libchess/move.c b/libchess/move.c index e74c8f1..22f589b 100644 --- a/libchess/move.c +++ b/libchess/move.c @@ -942,7 +942,7 @@ static int finalize_move(GAME *g, BOARD b, int promo, int sfile, int srank, g->ply++; if (g->ply / 2 == 50) { - pgn_tag_add(&g->tag, "Result", "1-2/1-2"); + pgn_tag_add(&g->tag, "Result", "1/2-1/2"); SET_FLAG(g->flags, GF_GAMEOVER); } } -- 2.11.4.GIT