X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=score.c;h=77e8ab35ba8bb503343345da4a355405adf2cfef;hp=5738e72c0a13e6b5a4643bceb375b69cbf528078;hb=148882a3cc520f34616a1175ed157fe258d68dcc;hpb=f8a464d8eed8cf611c0c3f80166d2a650efb1485 diff --git a/score.c b/score.c index 5738e72..77e8ab3 100644 --- a/score.c +++ b/score.c @@ -27,6 +27,7 @@ #include "common.h" #include "config.h" #include "file.h" +#include "globals.h" #include "score.h" // High score table @@ -121,11 +122,13 @@ snprintscore(char *s, size_t n, int score) } } -int -snprintscore_line(char *s, size_t n, int score) +void +show_score(void) { - int r = snprintf(s, n, "Time: "); - return r + snprintscore(s+r, n-r, score); + char s[16]; + int r = snprintf(s, 16, "Time: "); + snprintscore(s+r, 16-r, score); + SFont_Write(surf_screen, g_font, XSIZE-250, 0, s); } void