mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-01-18 07:22:28 +00:00
Fix tic-based bug returning early
This commit is contained in:
parent
43ae628adc
commit
ea2276eb07
1 changed files with 1 additions and 1 deletions
|
@ -7493,7 +7493,7 @@ static boolean P_FadeFakeFloor(ffloor_t *rover, INT16 destvalue, INT16 speed, IN
|
|||
alpha = rover->alpha;
|
||||
|
||||
// routines specific to fade in and fade out
|
||||
if (alpha == destvalue)
|
||||
if (!ticbased && alpha == destvalue)
|
||||
return stillfading;
|
||||
else if (alpha > destvalue) // fade out
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue