mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Fix tic-based bug returning early
This commit is contained in:
parent
295ff73e70
commit
bb55774171
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;
|
alpha = rover->alpha;
|
||||||
|
|
||||||
// routines specific to fade in and fade out
|
// routines specific to fade in and fade out
|
||||||
if (alpha == destvalue)
|
if (!ticbased && alpha == destvalue)
|
||||||
return stillfading;
|
return stillfading;
|
||||||
else if (alpha > destvalue) // fade out
|
else if (alpha > destvalue) // fade out
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue