From f0d208bf56c90608378a5aa63a9b8d3db1f14e69 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 7 Jun 2020 10:46:35 +0200 Subject: [PATCH] - fixed compile error. --- source/sw/src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sw/src/player.cpp b/source/sw/src/player.cpp index a39e7a7dc..b440067ff 100644 --- a/source/sw/src/player.cpp +++ b/source/sw/src/player.cpp @@ -2656,7 +2656,7 @@ DoPlayerMove(PLAYERp pp) // turning and movement still get appropriately interpolated. // We do this from here instead of MovePlayer, covering the case // the player gets pushed by a wall (e.g., on the boat in level 5). - SWBOOL interpolate_ride = pp->sop_riding && (!gs.InterpolateSO || CommEnabled); + SWBOOL interpolate_ride = pp->sop_riding && (!cl_sointerpolation || CommEnabled); void SlipSlope(PLAYERp pp);