Skip to content

Commit 0b761ba

Browse files
authored
Merge pull request #11 from yy214123/fix-comment-errors
Fix incorrect comments
2 parents b98a4c9 + cf37da8 commit 0b761ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

game.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55

66
const line_t lines[4] = {
7-
{1, 0, 0, 0, BOARD_SIZE - GOAL + 1, BOARD_SIZE}, // ROW
8-
{0, 1, 0, 0, BOARD_SIZE, BOARD_SIZE - GOAL + 1}, // COL
7+
{1, 0, 0, 0, BOARD_SIZE - GOAL + 1, BOARD_SIZE}, // COL
8+
{0, 1, 0, 0, BOARD_SIZE, BOARD_SIZE - GOAL + 1}, // ROW
99
{1, 1, 0, 0, BOARD_SIZE - GOAL + 1, BOARD_SIZE - GOAL + 1}, // PRIMARY
1010
{1, -1, 0, GOAL - 1, BOARD_SIZE - GOAL + 1, BOARD_SIZE}, // SECONDARY
1111
};

0 commit comments

Comments
 (0)