From: H.G.Muller Date: Wed, 21 Sep 2016 12:22:36 +0000 (+0200) Subject: Split byoyomi options over lines X-Git-Tag: v2.3~21 X-Git-Url: http://winboard.nl/cgi-bin?p=uci2wb.git;a=commitdiff_plain;h=ba36924e290edaa5b9651013ed9111541afd33b0 Split byoyomi options over lines --- diff --git a/UCI2WB.c b/UCI2WB.c index 9441310..c3129f5 100644 --- a/UCI2WB.c +++ b/UCI2WB.c @@ -453,7 +453,7 @@ GUI2Engine() if(!variants) variants = sc=='s' ? "shogi,5x5+5_shogi" : VARIANTS; printf("feature variants=\"%s\" setboard=1 usermove=1 debug=1 ping=1 reuse=0 exclude=1 pause=1 sigint=0 sigterm=0 done=0\n", variants); printf("feature option=\"UCI2WB debug output -check %d\"\n", debug); - if(sc == 's') printf("feature option=\"Floating Byoyomi -check %d\" option=\"Byoyomi -spin %d -1 1000\"\n", flob, byo); + if(sc == 's') printf("feature option=\"Floating Byoyomi -check %d\"\nfeature option=\"Byoyomi -spin %d -1 1000\"\n", flob, byo); fprintf(toE, sc == 'x' ? "ucci\n" : "u%ci\n", sc); fflush(toE); // prompt UCI engine for options Sync(PAUSE); // wait for uciok }