DroidFish: Updated FIXME list.

This commit is contained in:
Peter Osterlund
2012-03-04 19:04:23 +00:00
parent 4f4c1c75e7
commit f602cd6448
2 changed files with 2 additions and 1 deletions

View File

@@ -141,6 +141,7 @@ public class DroidFish extends Activity implements GUIInterface {
// FIXME!!! Better behavior if engine is terminated. How exactly? // FIXME!!! Better behavior if engine is terminated. How exactly?
// FIXME!!! Handle PGN intents with more than one game. // FIXME!!! Handle PGN intents with more than one game.
// FIXME!!! Make engine hash size configurable.
private ChessBoard cb; private ChessBoard cb;
private static DroidChessController ctrl = null; private static DroidChessController ctrl = null;

View File

@@ -334,7 +334,7 @@ public class TextIO {
ret.append("O-O-O"); ret.append("O-O-O");
} }
} else if (move.from == bKingOrigPos && pos.getPiece(bKingOrigPos) == Piece.BKING) { } else if (move.from == bKingOrigPos && pos.getPiece(bKingOrigPos) == Piece.BKING) {
// Check white castle // Check black castle
if (move.to == Position.getSquare(6, 7)) { if (move.to == Position.getSquare(6, 7)) {
ret.append("O-O"); ret.append("O-O");
} else if (move.to == Position.getSquare(2, 7)) { } else if (move.to == Position.getSquare(2, 7)) {