From: H.G. Muller Date: Sun, 15 Sep 2013 17:12:42 +0000 (+0200) Subject: Fix adjudication of Giveaway stalemates X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=5860353e5bf15b88838ac4bacb1e3e56b0ac8383;p=xboard.git Fix adjudication of Giveaway stalemates The case where the side-to-move would win by stalemate was not treated in the Adjudicate switch. --- diff --git a/backend.c b/backend.c index 575fc26..585144d 100644 --- a/backend.c +++ b/backend.c @@ -7762,6 +7762,7 @@ Adjudicate (ChessProgramState *cps) case MT_NONE: default: break; + case MT_STEALMATE: case MT_STALEMATE: case MT_STAINMATE: reason = "Xboard adjudication: Stalemate";