mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-07 10:34:48 +00:00
checkpoint
This commit is contained in:
parent
afa0aae131
commit
27ca70d069
1 changed files with 1 additions and 1 deletions
|
@ -7138,7 +7138,7 @@ static void P_AddMasterFader(INT32 destvalue, INT32 speed,
|
|||
d->thinker.function.acp1 = (actionf_p1)T_Fade;
|
||||
d->affectee = line;
|
||||
d->destvalue = max(1, min(256, destvalue)); // ffloor->alpha is 1-256
|
||||
d->speed = speed; // minimum speed 1/tic // if speed < 1, alpha is set immediately in thinker
|
||||
d->speed = max(1, speed); // minimum speed 1/tic // if speed < 1, alpha is set immediately in thinker
|
||||
d->doexists = doexists;
|
||||
d->dotranslucent = dotranslucent;
|
||||
d->dosolid = dosolid;
|
||||
|
|
Loading…
Reference in a new issue