mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 20:40:47 +00:00
- Exhumed: Fix if statement in DrawWeapons()
following changes in e225e85ae1
.
This commit is contained in:
parent
e225e85ae1
commit
b5823385e1
1 changed files with 1 additions and 1 deletions
|
@ -960,7 +960,7 @@ void DrawWeapons(double smooth)
|
|||
|
||||
double xOffset, yOffset;
|
||||
|
||||
if (cl_weaponsway && var_34 == 1)
|
||||
if (cl_weaponsway)
|
||||
{
|
||||
// CHECKME - not & 0x7FF?
|
||||
double nBobAngle = obobangle + fmulscale16(((bobangle + 1024 - obobangle) & 2047) - 1024, smooth);
|
||||
|
|
Loading…
Reference in a new issue