From: H.G. Muller Date: Tue, 20 Oct 2009 00:59:43 +0000 (-0700) Subject: fixed bug reported in WB forum: second game of a match would not start when using... X-Git-Tag: v4.4.1.20091019~4 X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=34247047bd03d30b875fda9bf4b788915718e976 fixed bug reported in WB forum: second game of a match would not start when using the GUI book --- diff --git a/backend.c b/backend.c index bf1a32c..756641c 100755 --- a/backend.c +++ b/backend.c @@ -10930,7 +10930,9 @@ TwoMachinesEvent P((void)) strcpy(bookMove, "move "); strcat(bookMove, bookHit); - HandleMachineMove(bookMove, &first); + savedMessage = bookMove; // args for deferred call + savedState = onmove; + ScheduleDelayedEvent(DeferredBookMove, 1); } }