Skip to content

Commit 3c2f4ca

Browse files
hozlucas28Guidolinares
and
Guidolinares
committed
feature: clean console on program start
Co-authored-by: Guidolinares <[email protected]>
1 parent a38b524 commit 3c2f4ca

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

libs/utilities.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -224,8 +224,7 @@ void setDashboardCenter(TGame* pGame) {
224224

225225
void sleep(int miliseconds) {
226226
clock_t startTime = clock();
227-
while (clock() < (startTime + miliseconds))
228-
;
227+
while (clock() < (startTime + miliseconds));
229228
}
230229

231230
void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {

src/main.c

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ int main() {
3030

3131
fillDashboard(&game, DEAD_CELL);
3232

33+
system("cls");
34+
3335
/* ----------------------------- Request Pattern ---------------------------- */
3436

3537
requestedPattern = getUserInputStr(

0 commit comments

Comments
 (0)