summaryrefslogtreecommitdiff
path: root/src/game_loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game_loop.c')
-rw-r--r--src/game_loop.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/game_loop.c b/src/game_loop.c
index 964ba3f..89b5d35 100644
--- a/src/game_loop.c
+++ b/src/game_loop.c
@@ -158,7 +158,6 @@ enum player_color game_loop(enum player_color board[8][8]) {
while (has_valid_moves(board, current_player)) {
struct move move = get_move(board, current_player);
apply_move(board, current_player, move);
- /*board[move.row][move.col] = current_player;*/
current_player = other_player(current_player);
}