From 285658a5ecdf03e2bbb39f8cf598bb9ce884d748 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 2 Sep 2012 18:34:05 +0200 Subject: [PATCH] Correct printing of increment in Creating message The increment was printed 10 times too large. --- lasker-2.2.3/src/matchproc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lasker-2.2.3/src/matchproc.c b/lasker-2.2.3/src/matchproc.c index 6c2ecf5..70c12f4 100644 --- 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); -- 1.7.0.4