Skip to content

Commit 76dee53

Browse files
committed
fix: data types
1 parent b6f1163 commit 76dee53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libs/game/methods.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#include "./structs.h"
1111

1212
int countAliveNeighbors(TGame* pGame, const int cellRow, const int cellCol, const int radius) {
13-
size_t i;
14-
size_t j;
13+
int i;
14+
int j;
1515

1616
const int startRow = cellRow - radius;
1717
const int startCol = cellCol - radius;

0 commit comments

Comments
 (0)