mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-04-13 23:52:45 +02:00
DroidFish: Fixed bug in 055322 causing small values not to be displayed.
This commit is contained in:
parent
76d79ef7a8
commit
94c9d914ac
@ -809,6 +809,8 @@ public class DroidChessController {
|
|||||||
value /= 1000;
|
value /= 1000;
|
||||||
sb.append(value);
|
sb.append(value);
|
||||||
sb.append('k');
|
sb.append('k');
|
||||||
|
} else {
|
||||||
|
sb.append(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user