Skip to content

Commit 5b172e0

Browse files
committed
doc: add divider comments
1 parent 850d406 commit 5b172e0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main.c

+6
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ int main() {
2727

2828
fillDashboard(&game, DEAD_CELL);
2929

30+
/* ----------------------------- Request Pattern ---------------------------- */
31+
3032
requestedPattern = getUserInputStr(
3133
"> Which pattern do you want ('Glider','Toad', 'Press', or 'Glider cannon')? ",
3234
"> Invalid pattern! Try again...", 50, &validatePattern);
@@ -35,6 +37,8 @@ int main() {
3537

3638
drawPattern(&game, requestedPattern);
3739

40+
/* ----------------------- Request Maximum Generation ----------------------- */
41+
3842
maxGenerations = getUserInputStr(
3943
"> Which is maximum generation do you want? (a negative number is equal to infinity): ",
4044
"> Invalid generation! Try again...", 10, &validateGeneration);
@@ -48,6 +52,8 @@ int main() {
4852

4953
printf("> Maximum generation received: %s.\n\n", maxGenerations);
5054

55+
/* ------------------------------ Request Delay ----------------------------- */
56+
5157
sprintf(delayBetweenGenerationsMsg,
5258
"> What should be the miliseconds delay between generations? (must be between %d "
5359
"and %d, both included): ",

0 commit comments

Comments
 (0)