projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
36d1207
)
Clear total solving time at start of match
author
H.G.Muller
<hgm@hgm-xboard.(none)>
Sun, 27 Mar 2016 11:21:52 +0000 (13:21 +0200)
committer
H.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
patch
|
blob
|
history
diff --git
a/backend.c
b/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();
}