- 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.
This commit is contained in:
Mitchell Richters 2020-09-10 23:12:51 +10:00
parent 19fd0331d4
commit baeea5bf3c
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}