From 5860353e5bf15b88838ac4bacb1e3e56b0ac8383 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 15 Sep 2013 19:12:42 +0200 Subject: [PATCH] Fix adjudication of Giveaway stalemates The case where the side-to-move would win by stalemate was not treated in the Adjudicate switch. --- backend.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) 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"; -- 1.7.0.4