From 0a797389e035002fbc00ed5f4c4f8bfe1812d6c4 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Tue, 22 Jan 2013 20:32:33 +0100 Subject: [PATCH] Enforce -popupMoveErrors One move error was using DisplayError(), in stead of DisplayMoveError(), and thus did not obey the -popupMoveErrors option. --- backend.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/backend.c b/backend.c index 7269a75..8135410 100644 --- a/backend.c +++ b/backend.c @@ -8203,7 +8203,7 @@ FakeBookMove: // [HGM] book: we jump here to simulate machine moves after book h /* Machine move could not be parsed; ignore it. */ snprintf(buf1, MSG_SIZ*10, _("Illegal move \"%s\" from %s machine"), machineMove, _(cps->which)); - DisplayError(buf1, 0); + DisplayMoveError(buf1); snprintf(buf1, MSG_SIZ*10, "Xboard: Forfeit due to invalid move: %s (%c%c%c%c) res=%d", machineMove, fromX+AAA, fromY+ONE, toX+AAA, toY+ONE, moveType); if (gameMode == TwoMachinesPlay) { -- 1.7.0.4