去除一处被反复调用的 setTips 以提高性能6%

This commit is contained in:
CalciteM Team 2019-07-13 13:56:31 +08:00
parent 87ff9a3927
commit 4e43de6663
1 changed files with 1 additions and 1 deletions

View File

@ -1079,7 +1079,7 @@ bool NineChess::place(int pos)
// 进入去子状态
context.action = ACTION_CAPTURE;
}
setTips();
//setTips(); // 非常影响性能
return true;
}