DroidFish: Fixed missing line break in multi-pv mode.

This commit is contained in:
Peter Osterlund 2011-12-24 10:41:12 +00:00
parent 97e5585d3a
commit a00f8c1028

View File

@ -82,6 +82,8 @@ public class DroidChessController {
PvInfo pvi = pvInfoV.get(i);
if (pvi.depth <= 0)
continue;
if (i > 0)
buf.append('\n');
buf.append(String.format("[%d] ", pvi.depth));
boolean negateScore = !whiteMove && gui.whiteBasedScores();
if (pvi.upperBound || pvi.lowerBound) {