mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Use splitfont for FPZ help text
This commit is contained in:
parent
00e97a4387
commit
d7eebe1016
1 changed files with 2 additions and 2 deletions
|
|
@ -441,8 +441,8 @@ std::optional<TargetTracking::Tooltip> object_tooltip(const mobj_t* mobj)
|
||||||
mobj->player == stplyr && stplyr->icecube.frozen,
|
mobj->player == stplyr && stplyr->icecube.frozen,
|
||||||
[&] { return Tooltip(TextElement(
|
[&] { return Tooltip(TextElement(
|
||||||
(leveltime/(TICRATE/2)%2) ?
|
(leveltime/(TICRATE/2)%2) ?
|
||||||
TextElement().parse("<r_animated>").font(Draw::Font::kMenu) :
|
TextElement().parse("<r_animated>").font(splitfont) :
|
||||||
TextElement().parse("<a_animated>").font(Draw::Font::kMenu)
|
TextElement().parse("<a_animated>").font(splitfont)
|
||||||
)).offset3d(0, 0, 64 * mobj->scale * P_MobjFlip(mobj)); }
|
)).offset3d(0, 0, 64 * mobj->scale * P_MobjFlip(mobj)); }
|
||||||
// I will be trying to figure out why the return value didn't accept a straightforward call to parse() for the rest of my life (apprx. 15 seconds)
|
// I will be trying to figure out why the return value didn't accept a straightforward call to parse() for the rest of my life (apprx. 15 seconds)
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue