Skip to content

Commit 21dbd86

Browse files
committed
feature: improve field assignment based on condition
1 parent b08c3c9 commit 21dbd86

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libs/game/methods.c

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

223-
if (generation + 1 != INT_MAX) generation++;
224-
pGame->generation = generation;
223+
if (generation + 1 != INT_MAX) {
224+
generation++;
225+
pGame->generation = generation;
226+
};
225227

226228
system("cls");
227229
printGameByConsole(pGame);

0 commit comments

Comments
 (0)