去掉比分冒号前后空格

This commit is contained in:
CalciteM Team 2019-07-21 00:26:27 +08:00
parent 995f965d61
commit bfcd719d99
1 changed files with 1 additions and 1 deletions

View File

@ -1775,7 +1775,7 @@ void NineChess::setTips()
switch (context.stage) {
case NineChess::GAME_NOTSTARTED:
tips = "轮到玩家1落子剩余" + std::to_string(context.nPiecesInHand_1) + "" +
" 比分 " + to_string(score_1) + " : " + to_string(score_2);
" 比分 " + to_string(score_1) + ":" + to_string(score_2);
break;
case NineChess::GAME_PLACING: