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; i<count; i++ )
{
/* Player name */
if( info_ptr == AATREE_PTR_NIL )
- highscore_strl( line+3, "unknown", 10 );
+ highscore_strl( line+3, "unknown", 16 );
else
{
highscore_playerinfo *inf = aatree_get_data(
&sys->aainfo_playerinfo_playerid, info_ptr );
- highscore_strl( line+3, inf->nickname, 10 );
+ highscore_strl( line+3, inf->nickname, 16 );
}
u16 centiseconds = record->time,
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 );
}
}