PieceToChar: 黑棋改为@且空位改为*
This commit is contained in:
parent
e654d82fde
commit
079d1bd7bb
|
@ -46,7 +46,7 @@ namespace
|
||||||
const string PieceToChar(Piece p)
|
const string PieceToChar(Piece p)
|
||||||
{
|
{
|
||||||
if (p == NO_PIECE) {
|
if (p == NO_PIECE) {
|
||||||
return "+";
|
return "*";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (p == BAN_STONE) {
|
if (p == BAN_STONE) {
|
||||||
|
@ -54,7 +54,7 @@ const string PieceToChar(Piece p)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (B_STONE <= p && p <= B_STONE_12) {
|
if (B_STONE <= p && p <= B_STONE_12) {
|
||||||
return "#";
|
return "@";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (W_STONE <= p && p <= W_STONE_12) {
|
if (W_STONE <= p && p <= W_STONE_12) {
|
||||||
|
|
Loading…
Reference in New Issue