Correct printing of increment in Creating message
authorH.G. Muller <h.g.muller@hccnet.nl>
Sun, 2 Sep 2012 16:34:05 +0000 (18:34 +0200)
committerH.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

index 6c2ecf5..70c12f4 100644 (file)
@@ -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);