# HG changeset patch # User Mike Becker # Date 1786708347 -7200 # Node ID 2929e86c4817d6591ac3891c5fe4e62c1c48713f # Parent e541b60029330d9f3a6a4ee877f65151cb0cd6e2 add info text in game review for threefold repetition relates to #843 diff -r e541b6002933 -r 2929e86c4817 src/main.c --- a/src/main.c Fri Aug 14 13:40:26 2026 +0200 +++ b/src/main.c Fri Aug 14 13:52:27 2026 +0200 @@ -846,6 +846,8 @@ addstr("The game ended remis.\n"); } else if (gamestate->stalemate) { addstr("The game ended in a stalemate.\n"); + } else if (gamestate->threefold) { + addstr("The game was drawn after threefold repetition.\n"); } else if (gamestate->checkmate) { printw("%s was checkmated.\n", gamestate->movecount % 2 == 0 ? "White" : "Black");