From: H.G. Muller Date: Mon, 18 Feb 2013 10:17:16 +0000 (+0100) Subject: Allow display of 50-move counter in zippy mode X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=3b7462ef71c6d6c841bd2f19cafb5679b9841a44;p=xboard.git Allow display of 50-move counter in zippy mode No chance it could be considered cheating there. --- diff --git a/engineoutput.c b/engineoutput.c index 319557e..42eccc0 100644 --- a/engineoutput.c +++ b/engineoutput.c @@ -113,7 +113,7 @@ MakeEngineOutputTitle () if( count == backwardMostMove ) count -= initialRulePlies; count = currentMove - count; if(!rule) rule = 100; - if(count >= rule - 40 && (!appData.icsActive || gameMode == IcsObserving)) { + if(count >= rule - 40 && (!appData.icsActive || gameMode == IcsObserving || appData.zippyPlay)) { snprintf(buf, MSG_SIZ, ngettext("%s (%d reversible ply)", "%s (%d reversible plies)", count), title, count); safeStrCpy(title, buf, MSG_SIZ); }