Skip to content

Commit

Permalink
fix: data types
Browse files Browse the repository at this point in the history
  • Loading branch information
hozlucas28 committed Oct 20, 2024
1 parent b6f1163 commit 76dee53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/game/methods.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
#include "./structs.h"

int countAliveNeighbors(TGame* pGame, const int cellRow, const int cellCol, const int radius) {
size_t i;
size_t j;
int i;
int j;

const int startRow = cellRow - radius;
const int startCol = cellCol - radius;
Expand Down

0 comments on commit 76dee53

Please sign in to comment.