mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-01 04:33:02 +00:00
Time Attack: staff ghost time uses speedometer font
This commit is contained in:
parent
fb07077c1c
commit
39bc04200e
1 changed files with 7 additions and 2 deletions
|
|
@ -1987,8 +1987,13 @@ void K_drawKartTimestamp(tic_t drawtime, INT32 TX, INT32 TY, INT32 splitflags, U
|
|||
}
|
||||
}
|
||||
|
||||
workx -= V_ThinStringWidth(stickermedalinfo.targettext, splitflags);
|
||||
V_DrawThinString(workx, worky, splitflags, stickermedalinfo.targettext);
|
||||
using srb2::Draw;
|
||||
Draw::TextElement text(stickermedalinfo.targettext);
|
||||
text.flags(splitflags);
|
||||
text.font(Draw::Font::kZVote);
|
||||
|
||||
workx -= text.width();
|
||||
Draw(workx, worky).text(text);
|
||||
}
|
||||
|
||||
workx -= (6 + (i*5));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue