mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2024-11-27 06:10:28 +01: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;
|
||||
sb.append(value);
|
||||
sb.append('k');
|
||||
} else {
|
||||
sb.append(value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user