Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CardealRusso committed Nov 6, 2024
1 parent 08466d1 commit 237746b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/cookieclicker/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ int run() {
last_time = current_time;
}

fenster_drawtext(&f, font, vsformat("Cookies: %llu", cookies), 10, 30);
fenster_drawtext(&f, font, vsformat("Per Second: %llu", cookies_per_sec), 10, 60);
fenster_drawtext(&f, font, vsformat("Cookies: %llu \\n Per Second: %llu", (unsigned long long)cookies, (unsigned long long)cookies_per_sec), 10, 30);

int button_w = 200, button_h = 80, start_y = 100;
for (int i = 0; i < 5; i++) {
Expand Down

0 comments on commit 237746b

Please sign in to comment.