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
This commit is contained in:
PaulyB 2019-09-09 23:17:55 -07:00 committed by Christoph Oelckers
parent 223b62aa59
commit 0535961a7a
1 changed files with 5 additions and 1 deletions

View File

@ -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)
{