From 910c94a15ff233cb65489521d6b7ea633f0619d7 Mon Sep 17 00:00:00 2001 From: Marco Hladik Date: Sat, 5 Jan 2019 20:31:10 +0100 Subject: [PATCH] Actually, this is the right coordinate for the defusal kit HUD icon... --- Source/Client/HUD.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Client/HUD.c b/Source/Client/HUD.c index d0533573..325d91bb 100755 --- a/Source/Client/HUD.c +++ b/Source/Client/HUD.c @@ -174,7 +174,7 @@ void HUD_DrawIcons(void) { // Defusal Kit Icon (64, 148) if (getstatf(STAT_EQUIPMENT) & EQUIPMENT_DEFUSALKIT) { - drawsubpic(iconpos, [32,32], HUD_NUMFILE_LAYER, [0.25, 0.578125], [0.125, 0.125], [0,1,0], 1, DRAWFLAG_ADDITIVE); + drawsubpic(iconpos, [32,32], HUD_NUMFILE_LAYER, [0.125, 0.578125], [0.125, 0.125], [0,1,0], 1, DRAWFLAG_ADDITIVE); iconpos[1] += 32; }