From 9450db5f57ecea59a021916e92db19550e94748a Mon Sep 17 00:00:00 2001 From: Robby Zambito Date: Mon, 26 Jul 2021 00:01:41 -0400 Subject: Removed commented code --- src/game_loop.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src') 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; } -- cgit v1.2.3