From 2d4f590cceb5db32b5c32d537f8c2995cea388b4 Mon Sep 17 00:00:00 2001 From: James R Date: Fri, 15 Mar 2024 22:01:38 -0700 Subject: [PATCH] Draw debug HUD in Time Attack, includes overhead messages --- src/k_hud.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/k_hud.cpp b/src/k_hud.cpp index 30b3dd7a9..11e1fe08d 100644 --- a/src/k_hud.cpp +++ b/src/k_hud.cpp @@ -6229,7 +6229,7 @@ void K_drawKartHUD(void) if (modeattacking || freecam) // everything after here is MP and debug only { K_drawInput(); - return; + goto debug; } if ((gametyperules & GTR_KARMA) && !r_splitscreen && (stplyr->karthud[khud_yougotem] % 2)) // * YOU GOT EM * @@ -6286,6 +6286,7 @@ void K_drawKartHUD(void) } } +debug: K_DrawWaypointDebugger(); K_DrawBotDebugger(); K_DrawDirectorDebugger();