diff --git a/src/GomokuCell.java b/src/GomokuCell.java index bfe1df9..689d019 100644 --- a/src/GomokuCell.java +++ b/src/GomokuCell.java @@ -147,9 +147,9 @@ public class GomokuCell{ case Color.NIL: return "."; case Color.BLACK: - return "X"; + return "\u274C"; case Color.WHITE: - return "O"; + return "\uD83D"; default: throw new IllegalStateException("Unexpected value: " + this.getState()); } diff --git a/src/GomokuGame.java b/src/GomokuGame.java index 371e806..a33a952 100644 --- a/src/GomokuGame.java +++ b/src/GomokuGame.java @@ -226,10 +226,10 @@ public class GomokuGame { char c; switch (board.get(i, j).getState()) { case BLACK: - c = '\u274C'; + c = 'X'; break; case WHITE: - c = '\uD83D'; + c = 'O'; break; case NIL: c = '.';