From 92a61784298ba3cbf73ec1465239c534f1b46020 Mon Sep 17 00:00:00 2001 From: terminx Date: Wed, 29 Jan 2020 11:36:06 +0000 Subject: [PATCH] Fix forward movement with the mouse when mouse aiming is disabled This was missed back when input between the x and y axes was normalized to use the same scale. git-svn-id: https://svn.eduke32.com/eduke32@8541 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/player.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/duke3d/src/player.cpp b/source/duke3d/src/player.cpp index 6ed5729e0..52ed5b8b0 100644 --- a/source/duke3d/src/player.cpp +++ b/source/duke3d/src/player.cpp @@ -2948,7 +2948,7 @@ void P_GetInput(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;