Remove debugging printfs

This commit is contained in:
Eyal Sawady 2020-10-18 13:29:57 -04:00
parent 33b0f7134b
commit d3b2f20b53
No known key found for this signature in database
GPG Key ID: 604D3459E53A9952
1 changed files with 0 additions and 2 deletions

2
main.c
View File

@ -295,14 +295,12 @@ check_win_condition(void)
&& players[i].is_alive) {
for (size_t j = 0; j < NUM_SHORT; j++) {
if (!players[i].short_tasks_done[j]) {
printf("%zu, %zu\n", i, j);
tasks = 0;
break;
}
}
for (size_t j = 0; j < NUM_LONG; j++) {
if (!players[i].long_tasks_done[j]) {
printf("%zu, %zu\n", i, j);
tasks = 0;
break;
}