From 39bc04200e9cc7673e32f09a8cae4eaf6f219f82 Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 3 Mar 2024 18:28:30 -0800 Subject: [PATCH] Time Attack: staff ghost time uses speedometer font --- src/k_hud.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index e7b2f2c6b..ce963c9dc 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -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));