mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 11:40:44 +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
|
else
|
||||||
{
|
{
|
||||||
k = 140;
|
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,
|
auto spawned = EGS(p->cursectnum,
|
||||||
|
|
Loading…
Reference in a new issue