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 8ac8c88 commit 31c4448Copy full SHA for 31c4448
libs/utilities.c
@@ -224,7 +224,8 @@ void setDashboardCenter(TGame* pGame) {
224
225
void sleep(int miliseconds) {
226
clock_t startTime = clock();
227
- while (clock() < (startTime + miliseconds));
+ while (clock() < (startTime + miliseconds))
228
+ ;
229
}
230
231
void startGameByConsole(TGame* pGame, int maxGeneration, int delayBetweenGenerations) {
0 commit comments