projects
/
capablanca.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
775ebd0
)
Correct printing of increment in Creating message
author
H.G. Muller
<h.g.muller@hccnet.nl>
Sun, 2 Sep 2012 16:34:05 +0000 (18:34 +0200)
committer
H.G. Muller
<h.g.muller@hccnet.nl>
Tue, 4 Sep 2012 09:17:28 +0000 (11:17 +0200)
The increment was printed 10 times too large.
lasker-2.2.3/src/matchproc.c
patch
|
blob
|
history
diff --git
a/lasker-2.2.3/src/matchproc.c
b/lasker-2.2.3/src/matchproc.c
index
6c2ecf5
..
70c12f4
100644
(file)
--- a/
lasker-2.2.3/src/matchproc.c
+++ b/
lasker-2.2.3/src/matchproc.c
@@
-159,7
+159,7
@@
static void output_match_messages(int wp,int bp,int g, char* mess)
//bstr[game_globals.garray[g].type],
game_globals.garray[g].variant,
game_globals.garray[g].wInitTime/600,
- game_globals.garray[g].wIncrement);
+ game_globals.garray[g].wIncrement/10);
pprintf(wp, "%s", outStr);
pprintf(bp, "%s", outStr);
free(outStr);