diff --git a/OOP/FiveInARow/chessPiece.cpp b/OOP/FiveInARow/chessPiece.cpp index 10bd90e..dd045a7 100644 --- a/OOP/FiveInARow/chessPiece.cpp +++ b/OOP/FiveInARow/chessPiece.cpp @@ -40,6 +40,6 @@ std::string ChessPiece::show() { return "●"; } else { - return "◯"; + return "○"; } } \ No newline at end of file diff --git a/OOP/FiveInARow/main.cpp b/OOP/FiveInARow/main.cpp index 26479e2..2479a78 100644 --- a/OOP/FiveInARow/main.cpp +++ b/OOP/FiveInARow/main.cpp @@ -42,7 +42,7 @@ int main() { do { std::cout << players[nowMovePlayerIndex]->getName() << " [" - << (players[nowMovePlayerIndex]->getColor() ? "◯White" + << (players[nowMovePlayerIndex]->getColor() ? "○White" : "●Black") << "]: " << "Please enter the coordinate of your new chess piece." diff --git a/OOP/FiveInARow/player.cpp b/OOP/FiveInARow/player.cpp index a53e265..ad238ff 100644 --- a/OOP/FiveInARow/player.cpp +++ b/OOP/FiveInARow/player.cpp @@ -47,7 +47,7 @@ putChessPieceResult Player::setChess(char row, char column) { if (this->board->checkWinner(rowCount, columnCount, this->chessType)) { std::cout << "\n####################\n" << this->playerName << " [" - << (this->getColor() ? "◯White" : "●Black") << "] " + << (this->getColor() ? "○White" : "●Black") << "] " << " wins!" << std::endl << "####################\n"; return win;