Skip to content

Commit 9328c8e

Browse files
committed
fix: condition overflow
1 parent 21dbd86 commit 9328c8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/game/methods.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerat
220220
while (isToInfinity || generation < maxGeneration) {
221221
generateNextGeneration(pGame);
222222

223-
if (generation + 1 != INT_MAX) {
223+
if (generation != INT_MAX) {
224224
generation++;
225225
pGame->generation = generation;
226226
};

0 commit comments

Comments
 (0)