mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
- RR: fixed double negation in pitch math when throwing dynamite.
This commit is contained in:
parent
e5236d3423
commit
ec976d9db7
1 changed files with 1 additions and 1 deletions
|
@ -2731,7 +2731,7 @@ static void operateweapon(int snum, ESyncBits actions, int psect)
|
|||
else
|
||||
{
|
||||
k = 140;
|
||||
i = -512 - -MulScale(p->horizon.sum().asq16(), 20, 16);
|
||||
i = -512 - MulScale(p->horizon.sum().asq16(), 20, 16);
|
||||
}
|
||||
|
||||
auto spawned = EGS(p->cursectnum,
|
||||
|
|
Loading…
Reference in a new issue