mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Fix analog turning rate being half of what it should be
git-svn-id: https://svn.eduke32.com/eduke32@7979 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
ba730be6b6
commit
314eaa7200
1 changed files with 1 additions and 1 deletions
|
@ -2962,7 +2962,7 @@ void P_GetInput(int const playerNum)
|
|||
else
|
||||
{
|
||||
input.q16avel = fix16_div(fix16_from_int(info.mousex), F16(32));
|
||||
input.q16avel += fix16_from_int(info.dyaw * turnAmount / analogExtent);
|
||||
input.q16avel += fix16_from_int(info.dyaw * (turnAmount << 1) / analogExtent);
|
||||
}
|
||||
|
||||
if (g_myAimMode)
|
||||
|
|
Loading…
Reference in a new issue