Clear total solving time at start of match
authorH.G.Muller <hgm@hgm-xboard.(none)>
Sun, 27 Mar 2016 11:21:52 +0000 (13:21 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Tue, 29 Mar 2016 14:51:35 +0000 (16:51 +0200)
When multiple EPD suites are launched interactively, the time should be
calculated separately for each of them.

backend.c

index 325888f..d967485 100644 (file)
--- 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();
 }