mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +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);
|
using srb2::Draw;
|
||||||
V_DrawThinString(workx, worky, splitflags, stickermedalinfo.targettext);
|
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));
|
workx -= (6 + (i*5));
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue