diff --git a/src/p_slopes.c b/src/p_slopes.c index 49405a3c..5a125662 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -22,7 +22,7 @@ #include "r_main.h" #include "p_maputl.h" #include "w_wad.h" - +#include "r_fps.h" pslope_t *slopelist = NULL; UINT16 slopecount = 0; @@ -209,6 +209,9 @@ static inline void P_AddDynSlopeThinker (pslope_t* slope, dynplanetype_t type, l th->type = type; P_QueueSlopeThinker(&th->thinker); + + // interpolation + R_CreateInterpolator_DynSlope(&th->thinker, slope); }