mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-15 00:42:20 +00:00
- fixed the railgun's spiral duration was set incorrectly.
This commit is contained in:
parent
b7460144b6
commit
98adc98e56
1 changed files with 1 additions and 1 deletions
|
@ -763,7 +763,7 @@ void P_DrawRailTrail(AActor *source, TArray<SPortalHit> &portalhits, int color1,
|
||||||
int spiralduration = (duration == 0) ? 35 : duration;
|
int spiralduration = (duration == 0) ? 35 : duration;
|
||||||
|
|
||||||
p->alpha = 1.f;
|
p->alpha = 1.f;
|
||||||
p->ttl = duration;
|
p->ttl = spiralduration;
|
||||||
p->fadestep = FADEFROMTTL(spiralduration);
|
p->fadestep = FADEFROMTTL(spiralduration);
|
||||||
p->size = 3;
|
p->size = 3;
|
||||||
p->bright = fullbright;
|
p->bright = fullbright;
|
||||||
|
|
Loading…
Reference in a new issue