fixed timer cuz the dev didn't want to do his job

This commit is contained in:
Masséna Fezard | Nounouille 2021-01-11 17:07:23 +01:00
parent a7cd45efbe
commit f601494508
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void erase_tile(int x, int y, char level[])
void draw_timer(unsigned int step)
{
dprint(0, 0, C_WHITE, C_BLACK, "%u.%02u", (step*2)/FPS, (step*2)%FPS);
dprint_opt(0, 0, C_WHITE, C_BLACK, DTEXT_LEFT, DTEXT_TOP, "%u.%02u", (step*2)/FPS, (step*2)%FPS);
}
void just_breathe(unsigned int step)