diff options
-rw-r--r-- | ui.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -78,8 +78,12 @@ int UI::getMove(const Board &bd) { case KEY_LF: case KEY_CR: - if (cells[cury][curx] == -1) done = true; - else bel(); + if (cells[cury][curx] == -1) { + cout << "\x1B[36m#\x1B[0m\x1B[D"; + done = true; + } else { + bel(); + } break; case 'q': |