diff --git a/src/p_things.cpp b/src/p_things.cpp index aa48fe18b..e0f3936b7 100644 --- a/src/p_things.cpp +++ b/src/p_things.cpp @@ -137,6 +137,10 @@ bool P_MoveThing(AActor *source, fixed_t x, fixed_t y, fixed_t z, bool fog) source->PrevX = x; source->PrevY = y; source->PrevZ = z; + if (source == players[consoleplayer].camera) + { + R_ResetViewInterpolation(); + } return true; } else