mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-29 02:50:59 +00:00
- RR: fixed inventory display overlapping the weapon bar in status bar mode.
Fixes #231
This commit is contained in:
parent
f41fe7c692
commit
a8fd2e7ec3
1 changed files with 1 additions and 1 deletions
|
@ -352,7 +352,7 @@ public:
|
||||||
|
|
||||||
double top = 200 - h;
|
double top = 200 - h;
|
||||||
BeginStatusBar(320, 200, wh + h);
|
BeginStatusBar(320, 200, wh + h);
|
||||||
DrawInventory(p, 160, 154, 0);
|
DrawInventory(p, 160, hud_size <= Hud_Stbar? 148 : 154, 0);
|
||||||
|
|
||||||
if (hud_size <= Hud_Stbar)
|
if (hud_size <= Hud_Stbar)
|
||||||
DrawWeaponBar(p, top);
|
DrawWeaponBar(p, top);
|
||||||
|
|
Loading…
Reference in a new issue