PieceToChar: 黑棋改为@且空位改为*

This commit is contained in:
Calcitem 2020-09-05 10:48:20 +08:00
parent e654d82fde
commit 079d1bd7bb
1 changed files with 2 additions and 2 deletions

View File

@ -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) {