Prevent click redraws while AI is thinking
This commit is contained in:
parent
acb9e05e07
commit
851c2f401d
1 changed files with 1 additions and 0 deletions
|
@ -189,6 +189,7 @@ public class Board {
|
|||
}
|
||||
|
||||
void handleMouseUp(int x, int y) {
|
||||
if (aiThinking) return;
|
||||
// Get board coordinate of mouse release
|
||||
BoardCoordinate newCoordinate = new ScreenCoordinate(x, y).toBoard();
|
||||
// Only do something if new coordinate is different from the originating coordinate
|
||||
|
|
Reference in a new issue