mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
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:
parent
223b62aa59
commit
0535961a7a
1 changed files with 5 additions and 1 deletions
|
@ -65,9 +65,13 @@ class HexenStatusBar : BaseStatusBar
|
||||||
protected void DrawFullScreenStuff ()
|
protected void DrawFullScreenStuff ()
|
||||||
{
|
{
|
||||||
//health
|
//health
|
||||||
DrawImage("PTN1A0", (51, -3));
|
DrawImage("PTN1A0", (60, -3));
|
||||||
DrawString(mBigFont, FormatNumber(mHealthInterpolator.GetValue()), (41, -21), DI_TEXT_ALIGN_RIGHT);
|
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
|
//frags/keys
|
||||||
if (deathmatch)
|
if (deathmatch)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue