From decfbd9ac05e334925c9c8ecc6b739ffc9b2b8f6 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Sun, 27 Mar 2016 13:21:52 +0200 Subject: [PATCH] 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. --- backend.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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(); } -- 1.7.0.4