We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45810ab commit 83fd575Copy full SHA for 83fd575
libs/utilities.c
@@ -165,7 +165,8 @@ void setDashboardCenter(TGame* pGame) {
165
166
void sleep(int miliseconds) {
167
clock_t startTime = clock();
168
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
169
+ ;
170
}
171
172
void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {
0 commit comments