From baeea5bf3cc17c54852dd4cdaa03b2350bcb6261 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 10 Sep 2020 23:12:51 +1000 Subject: [PATCH] - SW: Fix angle speed while walking on sector objects like the bus in Seppuku Station. * `playerSetAngle()` is too rigid since it continually sets angle until target reached, causing sluggish input. We only need to add a delta here. --- source/sw/src/track.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sw/src/track.cpp b/source/sw/src/track.cpp index 934a8153b..76e0fa8eb 100644 --- a/source/sw/src/track.cpp +++ b/source/sw/src/track.cpp @@ -1678,7 +1678,7 @@ MovePlayer(PLAYERp pp, SECTOR_OBJECTp sop, int nx, int ny) // New angle is formed by taking last known angle and // adjusting by the delta angle - playerSetAngle(pp, FixedToFloat(pp->RevolveQ16Ang + IntToFixed(pp->RevolveDeltaAng))); + playerAddAngle(pp, GetDeltaQ16Angle(pp->RevolveQ16Ang + IntToFixed(pp->RevolveDeltaAng), pp->q16ang)); UpdatePlayerSprite(pp); }