mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Manually merge EDuke32 SVN commit 8541.
This commit is contained in:
parent
71ada1d674
commit
61135e2635
1 changed files with 2 additions and 2 deletions
|
@ -3236,7 +3236,7 @@ void P_GetInput(int playerNum)
|
|||
if (mouseaim)
|
||||
input.q16horz = fix16_div(fix16_from_int(info.mousey), F16(64));
|
||||
else
|
||||
input.fvel = -(info.mousey >> 6);
|
||||
input.fvel = -(info.mousey >> 3);
|
||||
|
||||
if (!in_mouseflip) input.q16horz = -input.q16horz;
|
||||
|
||||
|
@ -4060,7 +4060,7 @@ void P_DHGetInput(int const playerNum)
|
|||
if (mouseaim)
|
||||
input.q16horz = fix16_div(fix16_from_int(info.mousey), F16(64));
|
||||
else
|
||||
input.fvel = -(info.mousey >> 6);
|
||||
input.fvel = -(info.mousey >> 3);
|
||||
|
||||
if (!in_mouseflip) input.q16horz = -input.q16horz;
|
||||
|
||||
|
|
Loading…
Reference in a new issue