Skip to content

Commit 69176d2

Browse files
committed
Fixed a missing semicolon
1 parent ff77260 commit 69176d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/GameBoard.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ void GameBoard::init_resources()
4646
int rolls[] = {2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11};
4747
random_shuffle(&rolls[0], &rolls[18]);
4848

49-
int xcoords[] = {0, -2, 2, -3, -1, 1, 3, -4, 2, 0, 2, 4, -3, -1, 1, 3, -2, 0, 2};
50-
int ycoords[] = {1, 2, 0, 3, 3, 2, 1, 6, 5, 4, 3, 2, 7, 6, 5, 4, 8, 7, 6};
49+
int xcoords[] = {0, -2, 2, -3, -1, 1, 3, -4, -2, 0, 2, 4, -3, -1, 1, 3, -2, 0, 2};
50+
int ycoords[] = {1, 2, 0, 3, 3, 2, 1, 6, 5, 4, 3, 2, 7, 6, 5, 4, 8, 7, 6};
5151

5252

5353
#ifdef DUMMY_BOARD
5454
int rollCount = 0;
55-
for (int i = 0; i<19, i++)
55+
for (int i = 0; i<19; i++)
5656
{
5757
if (resources[i]==DESERT)
5858
{

0 commit comments

Comments
 (0)