X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=highscores.h;fp=highscores.h;h=28662bfa0a403c2b15f9fa1f56525ab828a71881;hb=5e22cdfe9f6f83e807ce6456ab538d02104cd01d;hp=d99710e480cdf59f142ba126707f86995cdd740c;hpb=c33e4f46d864b2fde0c5938bf5a9388b1e8b5c04;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/highscores.h b/highscores.h index d99710e..28662bf 100644 --- a/highscores.h +++ b/highscores.h @@ -568,7 +568,7 @@ static void highscores_board_generate( char *buf, u32 id, u32 count ) highscore_strc ( buf+w*0, inf->name, w,w ); highscore_clear( buf+w*1, '-', w ); - highscore_strl ( buf+w*2, " #| Player | Time | Pts", 27 ); + highscore_strl ( buf+w*2, " #| Player | Time ", 27 ); for( int i=0; iaainfo_playerinfo_playerid, info_ptr ); - highscore_strl( line+3, inf->nickname, 10 ); + highscore_strl( line+3, inf->nickname, 16 ); } u16 centiseconds = record->time, @@ -609,14 +609,16 @@ static void highscores_board_generate( char *buf, u32 id, u32 count ) if( minutes > 9 ) minutes = 9; /* Timer */ - highscore_intr( line+14, minutes, 1, '0' ); - line[15] = ':'; - highscore_intr( line+16, seconds, 2, '0' ); - line[18] = '.'; - highscore_intr( line+19, centiseconds, 2, '0' ); + highscore_intr( line+20, minutes, 1, '0' ); + line[21] = ':'; + highscore_intr( line+22, seconds, 2, '0' ); + line[24] = '.'; + highscore_intr( line+25, centiseconds, 2, '0' ); +#if 0 /* Score */ highscore_intl( line+22, record->points, 5 ); +#endif it = aatree_next( &sys->aainfo_time, it ); } }