mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-11 22:57:49 +01:00
DroidFish: Fixed missing line break in multi-pv mode.
This commit is contained in:
parent
97e5585d3a
commit
a00f8c1028
|
@ -82,6 +82,8 @@ public class DroidChessController {
|
||||||
PvInfo pvi = pvInfoV.get(i);
|
PvInfo pvi = pvInfoV.get(i);
|
||||||
if (pvi.depth <= 0)
|
if (pvi.depth <= 0)
|
||||||
continue;
|
continue;
|
||||||
|
if (i > 0)
|
||||||
|
buf.append('\n');
|
||||||
buf.append(String.format("[%d] ", pvi.depth));
|
buf.append(String.format("[%d] ", pvi.depth));
|
||||||
boolean negateScore = !whiteMove && gui.whiteBasedScores();
|
boolean negateScore = !whiteMove && gui.whiteBasedScores();
|
||||||
if (pvi.upperBound || pvi.lowerBound) {
|
if (pvi.upperBound || pvi.lowerBound) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user