Skip to content

Commit

Permalink
🐛 fix time estimation
Browse files Browse the repository at this point in the history
  • Loading branch information
froz42 committed Nov 5, 2023
1 parent b0bc7a7 commit 9bd8a13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/srcs/output/loading_bar/loading_bar.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void write_loading_bar(
i++;
}
printf("%s", RESET);
const char *time_remaining_str = get_time_string(time_remaining);
const char *time_remaining_str = get_time_string(time_remaining * 2);
printf(
" %s%s%s (%s%zu%s/%s%zu%s)",
BOLD,
Expand Down

0 comments on commit 9bd8a13

Please sign in to comment.