mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
TA fix
This commit is contained in:
parent
81d6ac9f6e
commit
397db81a73
1 changed files with 2 additions and 1 deletions
|
|
@ -6605,10 +6605,11 @@ void K_drawKartHUD(void)
|
||||||
if (ta)
|
if (ta)
|
||||||
{
|
{
|
||||||
using srb2::Draw;
|
using srb2::Draw;
|
||||||
|
Draw::TextElement text = Draw::TextElement().parse("<y> Restart");
|
||||||
Draw(BASEVIDWIDTH - 19, 2)
|
Draw(BASEVIDWIDTH - 19, 2)
|
||||||
.flags(flags | V_YELLOWMAP)
|
.flags(flags | V_YELLOWMAP)
|
||||||
.align(Draw::Align::kRight)
|
.align(Draw::Align::kRight)
|
||||||
.text("\xBE Restart");
|
.text(text.string());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue