From 0535961a7a889f8ff28c7984687be17488ddee6e Mon Sep 17 00:00:00 2001 From: PaulyB <43163391+3saster@users.noreply.github.com> Date: Mon, 9 Sep 2019 23:17:55 -0700 Subject: [PATCH] Added Armor to Hexen fullscreen display Since the armor icon is much larger than the flask icon, both have been moved to the right slightly --- wadsrc/static/zscript/ui/statusbar/hexen_sbar.zs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/ui/statusbar/hexen_sbar.zs b/wadsrc/static/zscript/ui/statusbar/hexen_sbar.zs index 8286f419f..af410ed70 100644 --- a/wadsrc/static/zscript/ui/statusbar/hexen_sbar.zs +++ b/wadsrc/static/zscript/ui/statusbar/hexen_sbar.zs @@ -65,9 +65,13 @@ class HexenStatusBar : BaseStatusBar protected void DrawFullScreenStuff () { //health - DrawImage("PTN1A0", (51, -3)); + DrawImage("PTN1A0", (60, -3)); DrawString(mBigFont, FormatNumber(mHealthInterpolator.GetValue()), (41, -21), DI_TEXT_ALIGN_RIGHT); + //armor + DrawImage("AR_1A0", (60, -23)); + DrawString(mBigFont, FormatNumber(GetArmorSavePercent() / 5, 2), (41, -41), DI_TEXT_ALIGN_RIGHT); + //frags/keys if (deathmatch) {