mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- don't use DI_ITEM_RELCENTER for Blood's animated heart.
It does not look right for this sprite.
This commit is contained in:
parent
1ea09cd3d2
commit
39b84c4063
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ class BloodStatusBar : RazeStatusBar
|
||||||
|
|
||||||
int health = pPlayer.GetHealth();
|
int health = pPlayer.GetHealth();
|
||||||
BeginHUD(1, false, 320, 200);
|
BeginHUD(1, false, 320, 200);
|
||||||
DrawImage("HealthIcon", (12, 195 - 200), DI_ITEM_RELCENTER, scale:(0.56, 0.56));
|
DrawImage("HealthIcon", (12, 195 - 200), 0, scale:(0.56, 0.56));
|
||||||
DrawStatNumber("%d", health >> 4, "SBarNumberHealth", 28, 187 - 200, 0, 0);
|
DrawStatNumber("%d", health >> 4, "SBarNumberHealth", 28, 187 - 200, 0, 0);
|
||||||
if (pPlayer.armor[1])
|
if (pPlayer.armor[1])
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue