From b6113e3224d3a4e8acb0d712a60af40d98c00480 Mon Sep 17 00:00:00 2001 From: Steam Deck User Date: Mon, 27 Mar 2023 15:39:24 -0400 Subject: [PATCH] Swap position of Bouncing Betties and Grenades on the HUD --- source/cl_hud.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/cl_hud.c b/source/cl_hud.c index 1c11a30..6590c8d 100644 --- a/source/cl_hud.c +++ b/source/cl_hud.c @@ -1346,23 +1346,23 @@ HUD_Grenades void HUD_Grenades (void) { - Draw_StretchPic (448, 232, fragpic, 22, 22); + Draw_StretchPic (427, 232, fragpic, 22, 22); if (cl.stats[STAT_GRENADES] & UI_FRAG) { if (cl.stats[STAT_PRIGRENADES] <= 0) - Draw_ColoredString (463, 247, va ("%i",cl.stats[STAT_PRIGRENADES]), 255, 0, 0, 255, 1); + Draw_ColoredString (440, 247, va ("%i",cl.stats[STAT_PRIGRENADES]), 255, 0, 0, 255, 1); else - Draw_String (463, 247, va ("%i",cl.stats[STAT_PRIGRENADES])); + Draw_String (440, 247, va ("%i",cl.stats[STAT_PRIGRENADES])); } if (cl.stats[STAT_GRENADES] & UI_BETTY) { - Draw_StretchPic (427, 233, bettypic, 22, 22); + Draw_StretchPic (448, 233, bettypic, 22, 22); if (cl.stats[STAT_PRIGRENADES] <= 0) - Draw_ColoredString (440, 247, va ("%i",cl.stats[STAT_SECGRENADES]), 255, 0, 0, 255, 1); + Draw_ColoredString (463, 247, va ("%i",cl.stats[STAT_SECGRENADES]), 255, 0, 0, 255, 1); else - Draw_String (440, 247, va ("%i",cl.stats[STAT_SECGRENADES])); + Draw_String (463, 247, va ("%i",cl.stats[STAT_SECGRENADES])); } }