We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a38b524 commit 3c2f4caCopy full SHA for 3c2f4ca
libs/utilities.c
@@ -224,8 +224,7 @@ void setDashboardCenter(TGame* pGame) {
224
225
void sleep(int miliseconds) {
226
clock_t startTime = clock();
227
- while (clock() < (startTime + miliseconds))
228
- ;
+ while (clock() < (startTime + miliseconds));
229
}
230
231
void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {
src/main.c
@@ -30,6 +30,8 @@ int main() {
30
31
fillDashboard(&game, DEAD_CELL);
32
33
+ system("cls");
34
+
35
/* ----------------------------- Request Pattern ---------------------------- */
36
37
requestedPattern = getUserInputStr(
0 commit comments