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.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/game_loop.c b/src/game_loop.c
index 89b5d35..c76f7e6 100644
--- a/src/game_loop.c
+++ b/src/game_loop.c
@@ -96,7 +96,6 @@ static void apply_move(enum player_color board[8][8],
if (board[i][move.col] == EMPTY) {
break;
} else if (board[i][move.col] == current_player) {
- /*up_end = i + 1;*/
up_end = i;
break;
}
@@ -108,7 +107,6 @@ static void apply_move(enum player_color board[8][8],
if (board[i][move.col] == EMPTY) {
break;
} else if (board[i][move.col] == current_player) {
- /*down_end = i - 1;*/
down_end = i;
break;
}
@@ -120,7 +118,6 @@ static void apply_move(enum player_color board[8][8],
if (board[move.row][i] == EMPTY) {
break;
} else if (board[move.row][i] == current_player) {
- /*left_end = i + 1;*/
left_end = i;
break;
}
@@ -132,7 +129,6 @@ static void apply_move(enum player_color board[8][8],
if (board[move.row][i] == EMPTY) {
break;
} else if (board[move.row][i] == current_player) {
- /*right_end = i - 1;*/
right_end = i;
break;
}