mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- SW: Ensure player's fvel/svel is calculated using q16ang
, and not camq16ang
.
Fixes #328, again.
This commit is contained in:
parent
c183143ec6
commit
cc3551dcaa
1 changed files with 1 additions and 1 deletions
|
@ -324,7 +324,7 @@ void GameInterface::GetInput(InputPacket *packet, ControlInfo* const hidInput)
|
||||||
|
|
||||||
if (packet)
|
if (packet)
|
||||||
{
|
{
|
||||||
auto const ang = FixedToInt(pp->camq16ang);
|
auto const ang = FixedToInt(pp->q16ang);
|
||||||
|
|
||||||
*packet = loc;
|
*packet = loc;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue