From 079d1bd7bbcd950ccad50b067311dd50810bf777 Mon Sep 17 00:00:00 2001 From: Calcitem Date: Sat, 5 Sep 2020 10:48:20 +0800 Subject: [PATCH] =?UTF-8?q?PieceToChar:=20=E9=BB=91=E6=A3=8B=E6=94=B9?= =?UTF-8?q?=E4=B8=BA@=E4=B8=94=E7=A9=BA=E4=BD=8D=E6=94=B9=E4=B8=BA*?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/position.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/position.cpp b/src/position.cpp index 44f4bc17..99a6d687 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -46,7 +46,7 @@ namespace const string PieceToChar(Piece p) { if (p == NO_PIECE) { - return "+"; + return "*"; } if (p == BAN_STONE) { @@ -54,7 +54,7 @@ const string PieceToChar(Piece p) } if (B_STONE <= p && p <= B_STONE_12) { - return "#"; + return "@"; } if (W_STONE <= p && p <= W_STONE_12) {