From: H.G.Muller Date: Sun, 27 Mar 2016 11:21:52 +0000 (+0200) Subject: Clear total solving time at start of match X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=decfbd9ac05e334925c9c8ecc6b739ffc9b2b8f6 Clear total solving time at start of match When multiple EPD suites are launched interactively, the time should be calculated separately for each of them. --- diff --git a/backend.c b/backend.c index 325888f..d967485 100644 --- a/backend.c +++ b/backend.c @@ -1586,7 +1586,7 @@ MatchEvent (int mode) } matchMode = mode; matchGame = roundNr = 1; - first.matchWins = second.matchWins = 0; // [HGM] match: needed in later matches + first.matchWins = second.matchWins = totalTime = 0; // [HGM] match: needed in later matches NextMatchGame(); }