mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
- Exhumed: Tune position of compass, ammo count and underwater lungs following changes in 220283d1ec
.
Confirmed torch issue in #236 that 220283d1ec
fixed still remains fixed.
This commit is contained in:
parent
f5bb8a5714
commit
14d41e9984
1 changed files with 3 additions and 3 deletions
|
@ -595,8 +595,8 @@ private:
|
|||
}
|
||||
else
|
||||
{
|
||||
x -= tileWidth(tile) / 2;
|
||||
y -= tileHeight(tile) / 2;
|
||||
x -= tileWidth(tile) * .5;
|
||||
y -= tileHeight(tile) * .5;
|
||||
flags |= DI_ITEM_OFFSETS;
|
||||
}
|
||||
|
||||
|
@ -641,7 +641,7 @@ private:
|
|||
for (int i = nFirstAnim; i >= 0; i = StatusAnim[i].nPrevAnim)
|
||||
{
|
||||
int nSequence = nStatusSeqOffset + StatusAnim[i].s1;
|
||||
DrawStatusSequence(nSequence, StatusAnim[i].s2, 0, 0);
|
||||
DrawStatusSequence(nSequence, StatusAnim[i].s2, StatusAnim[i].s1 >= 37 && StatusAnim[i].s1 <= 43 ? 0.5 : 0, 0.5);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue