From 78eaecb8be75d3549534612de7646c54fe310946 Mon Sep 17 00:00:00 2001 From: dastrukar <3derid@gmail.com> Date: Fri, 29 Jan 2021 14:08:24 +0800 Subject: [PATCH] HUD: Fix ammo counter being misplaced --- fdhud.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fdhud.zs b/fdhud.zs index 2960690..771dbc4 100644 --- a/fdhud.zs +++ b/fdhud.zs @@ -248,7 +248,7 @@ class fdhud : BaseStatusBar DrawString(mHUDFont, ammotype2_string, (x+24, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW); DrawString(mIndexFont, ammotype1_string, (x+46, y+16), DI_TEXT_ALIGN_RIGHT|DI_NOSHADOW); } - else { DrawString(mHUDFont, ammotype1_string, (x+44, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW); } + else { DrawString(mHUDFont, ammotype1_string, (x+24, y+3), DI_TEXT_ALIGN_CENTER|DI_NOSHADOW); } } else {