X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=xengineoutput.c;h=7a0b5bcf72ccbf7add5733e39f8543487fd451ba;hb=b80a07a436b0211145c915a7d79bf7c41ae891e4;hp=77d5bf31108026eb97c6b8e288c9d6d092b767dd;hpb=30ca1b29405ac3b9db947a35f1701b2a47bfd513;p=xboard.git diff --git a/xengineoutput.c b/xengineoutput.c index 77d5bf3..7a0b5bc 100644 --- a/xengineoutput.c +++ b/xengineoutput.c @@ -661,7 +661,7 @@ void EngineOutputUpdate( FrontEndProgramStats * stats ) if( clearMemo ) DoClearMemo(which); /* Update */ - lastDepth[which] = depth; + lastDepth[which] = depth == 1 && ed.nodes == 0 ? 0 : depth; // [HGM] info-line kudge lastForwardMostMove[which] = forwardMostMove; if( ed.pv != 0 && ed.pv[0] == ' ' ) { @@ -917,7 +917,8 @@ static void UpdateControls( EngineOutputData * ed ) sprintf( s_time, "%d:%02d.%02d", time_secs / 60, time_secs % 60, time_cent ); /* Put all together... */ - sprintf( buf, "%3d %s %s\t%s\t", ed->depth, s_score, s_nodes, s_time ); + if(ed->nodes == 0) /*sprintf( buf, "%3d\t \t \t \t", ed->depth );*/ buf[0]=0; else + sprintf( buf, "%3d\t%s\t%s\t%s\t", ed->depth, s_score, s_nodes, s_time ); /* Add PV */ buflen = strlen(buf);