From a9356369acd5ff77da494aba1ef797229d3ca8b1 Mon Sep 17 00:00:00 2001 From: erysdren Date: Sun, 8 Dec 2024 20:13:23 -0600 Subject: [PATCH] CLIENT: HUD_PlayerDebugInfo: draw with capitals --- source/client/hud.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/client/hud.qc b/source/client/hud.qc index d56505c..2552d86 100644 --- a/source/client/hud.qc +++ b/source/client/hud.qc @@ -1955,18 +1955,18 @@ void(float width, float height) HUD_PlayerDebugInfo = lastupstime = time; } - string str = sprintf("speed: %3.1f qu/s", lastups); + string str = sprintf("Speed: %3.1f qu/s", lastups); vector pos = [cvar("scr_playerdebuginfo_x"), cvar("scr_playerdebuginfo_y")]; Draw_String(pos, str, [12, 12], [1, 1, 1], 1, 0); if (cvar("scr_playerdebuginfo") >= 2) { pos.y += 16; - str = sprintf("angles: %v", getproperty(VF_ANGLES)); + str = sprintf("Angles: %v", getproperty(VF_ANGLES)); Draw_String(pos, str, [12, 12], [1, 1, 1], 1, 0); pos.y += 16; - str = sprintf("origin: %v", getproperty(VF_ORIGIN)); + str = sprintf("Origin: %v", getproperty(VF_ORIGIN)); Draw_String(pos, str, [12, 12], [1, 1, 1], 1, 0); } };