mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- Duke: Fix shootstuff()
zvel calculation error following changes in badf536fef
.
* Fixes #177.
This commit is contained in:
parent
6b12514a29
commit
13839fc3e9
1 changed files with 1 additions and 1 deletions
|
@ -603,7 +603,7 @@ static void shootstuff(DDukeActor* actor, int p, int sx, int sy, int sz, int sa,
|
||||||
int j = findplayer(actor, &x);
|
int j = findplayer(actor, &x);
|
||||||
// sa = getangle(ps[j].oposx-sx,ps[j].oposy-sy);
|
// sa = getangle(ps[j].oposx-sx,ps[j].oposy-sy);
|
||||||
sa += 16 - (krand() & 31);
|
sa += 16 - (krand() & 31);
|
||||||
zvel = (((ps[j].oposz - sz + (3 << 8))) * vel) / ldist(ps[p].GetActor(), actor);
|
zvel = (((ps[j].oposz - sz + (3 << 8))) * vel) / ldist(ps[j].GetActor(), actor);
|
||||||
}
|
}
|
||||||
|
|
||||||
int oldzvel = zvel;
|
int oldzvel = zvel;
|
||||||
|
|
Loading…
Reference in a new issue