stagedraw: fix stage_draw_hud_score() signature

This commit is contained in:
Andrei Alexeyev 2023-07-30 06:22:14 +02:00
parent 296e330dae
commit b26e3b8d24
No known key found for this signature in database
GPG key ID: 72D26128040B9690

View file

@ -1133,7 +1133,7 @@ static inline void stage_draw_hud_power_value(float xpos, float ypos) {
);
}
static void stage_draw_hud_score(Alignment a, float xpos, float ypos, char *buf, size_t bufsize, uint32_t score) {
static void stage_draw_hud_score(Alignment a, float xpos, float ypos, char *buf, size_t bufsize, uint64_t score) {
format_huge_num(10, score, bufsize, buf);
Font *fnt = res_font("standard");