Don't truncate duel scores in HUD

This commit is contained in:
Antonio Martinez 2025-05-25 16:52:43 -04:00
parent 2a03651e21
commit 40029e5af6

View file

@ -3345,8 +3345,8 @@ static void K_drawKartDuelScores(void)
younum = younum.colorize(SKINCOLOR_GOLD);
}
foenum.text("{:01}", foe->duelscore%10);
younum.text("{:01}", stplyr->duelscore%10);
foenum.text("{}", foe->duelscore)
younum.text("{}", stplyr->duelscore);
// minirankings shamelessly copypasted because i know that shit works already
// and SURELY we will never need to use this somewhere else, right?