Skip to content

Commit 4c51958

Browse files
hozlucas28TiagoGiannottiGuidolinares
committed
test(ci): test format action
Co-authored-by: Tiago Giannotti <[email protected]> Co-authored-by: Guidolinares <[email protected]>
1 parent 5b172e0 commit 4c51958

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

src/main.c

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#include <limits.h>
44
#include <stdio.h>
55

6+
#include "../libs/utilities.c"
7+
68
int main() {
79
TGame game;
810

@@ -25,6 +27,7 @@ int main() {
2527
game.cellsDead = cols * rows;
2628
game.generation = 0;
2729

30+
setDashboardCenter(&game);
2831
fillDashboard(&game, DEAD_CELL);
2932

3033
/* ----------------------------- Request Pattern ---------------------------- */
@@ -36,6 +39,7 @@ int main() {
3639
printf("> Pattern received: '%s'.\n\n", requestedPattern);
3740

3841
drawPattern(&game, requestedPattern);
42+
printDashboardByConsole(&game);
3943

4044
/* ----------------------- Request Maximum Generation ----------------------- */
4145

@@ -55,14 +59,15 @@ int main() {
5559
/* ------------------------------ Request Delay ----------------------------- */
5660

5761
sprintf(delayBetweenGenerationsMsg,
58-
"> What should be the miliseconds delay between generations? (must be between %d "
59-
"and %d, both included): ",
62+
"> What should be the miliseconds delay between generations? (must be between %d and "
63+
"%d, both included): ",
6064
MINIMUM_DELAY, MAXIMUM_DELAY);
6165

6266
delayBetweenGenerations = getUserInputStr(delayBetweenGenerationsMsg,
6367
"> Invalid delay! Try again...", 5, &validateDelay);
6468

65-
sscanf(delayBetweenGenerations, "%d", &delayBetweenGenerationsInt);
69+
sscanf(delayBetweenGenerations, "%d",
70+
&delayBetweenGenerationsInt);
6671

6772
printf("> Delay received: %s miliseconds.\n", delayBetweenGenerations);
6873

0 commit comments

Comments
 (0)