From 514d98c6e84dca691e1d61a316b3cd86e87da27f Mon Sep 17 00:00:00 2001 From: MotoLegacy Date: Tue, 26 Nov 2024 11:47:57 -0800 Subject: [PATCH] CLIENT: Make controller glyph on useprint smaller; useprint less claustrophobic --- source/client/hud.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/client/hud.qc b/source/client/hud.qc index 92122c9..d12e20f 100644 --- a/source/client/hud.qc +++ b/source/client/hud.qc @@ -1053,7 +1053,7 @@ void(float width, float height) HUD_Useprint = if (usecost != "") { float cost_width = getTextWidth(usecost, 12); float x3 = (width - cost_width)/2; - Draw_String([x3, g_height/2 + 78, 0], usecost, [12, 12, 0], [1, 1, 1], 1, 0); + Draw_String([x3, g_height/2 + 84, 0], usecost, [12, 12, 0], [1, 1, 1], 1, 0); } // Draw highlighted usebutton @@ -1061,7 +1061,7 @@ void(float width, float height) HUD_Useprint = button_width = x + getTextWidth("Hold ", 12); if (Key_IsControllerGlyph(usebutton)) - Key_DrawControllerGlyph([button_width - 5, g_height/2 + 60], usebutton, [22, 22]); + Key_DrawControllerGlyph([button_width - 5, g_height/2 + 62], usebutton, [18, 18]); else Draw_String([button_width, g_height/2 + 65, 0], usebutton, [12, 12, 0], [1, 1, 0], 1, 0); }