Skip to content

Commit f2fd732

Browse files
committed
fix(newGliderCannonPattern): update rows value
1 parent 643cfbe commit f2fd732

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/patterns/constructors.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ void newGliderPattern(TPattern* pattern) {
1717
}
1818

1919
void newGliderCannonPattern(TPattern* pattern) {
20-
pattern->rows = 13;
20+
pattern->rows = 9;
2121
pattern->cols = 36;
2222

2323
fillPattern(pattern, DEAD_CELL);
@@ -139,4 +139,4 @@ void newToadPattern(TPattern* pattern) {
139139
pattern->arr[1][0] = ALIVE_CELL;
140140
pattern->arr[1][1] = ALIVE_CELL;
141141
pattern->arr[1][2] = ALIVE_CELL;
142-
}
142+
}

0 commit comments

Comments
 (0)