mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-02-24 21:17:51 +01:00
DroidFish: Fixed arrow display problem after switching from multi-PV to single-PV mode.
This commit is contained in:
parent
5ed85f4360
commit
944d16910d
|
@ -870,7 +870,6 @@ public class DroidComputerPlayer {
|
||||||
private long statNodes = 0;
|
private long statNodes = 0;
|
||||||
private long statTBHits = 0;
|
private long statTBHits = 0;
|
||||||
private int statNps = 0;
|
private int statNps = 0;
|
||||||
private int pvNum = 0;
|
|
||||||
private ArrayList<String> statPV = new ArrayList<String>();
|
private ArrayList<String> statPV = new ArrayList<String>();
|
||||||
private String statCurrMove = "";
|
private String statCurrMove = "";
|
||||||
private int statCurrMoveNr = 0;
|
private int statCurrMoveNr = 0;
|
||||||
|
@ -913,6 +912,7 @@ public class DroidComputerPlayer {
|
||||||
boolean havePvData = false;
|
boolean havePvData = false;
|
||||||
int nTokens = tokens.length;
|
int nTokens = tokens.length;
|
||||||
int i = 1;
|
int i = 1;
|
||||||
|
int pvNum = 0;
|
||||||
while (i < nTokens - 1) {
|
while (i < nTokens - 1) {
|
||||||
String is = tokens[i++];
|
String is = tokens[i++];
|
||||||
if (is.equals("depth")) {
|
if (is.equals("depth")) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user