From c13745efc8e52ebdf4072079966d3d369df76a48 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 29 Mar 2023 22:29:23 +1100 Subject: [PATCH] - Remove the mouse input negation out of the event handler. --- source/core/gamecontrol.cpp | 2 +- source/core/gameinput.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/source/core/gamecontrol.cpp b/source/core/gamecontrol.cpp index e6155e915..01d614239 100644 --- a/source/core/gamecontrol.cpp +++ b/source/core/gamecontrol.cpp @@ -218,7 +218,7 @@ bool System_DispatchEvent(event_t* ev) { if (ev->type == EV_Mouse && !System_WantGuiCapture()) { - inputState.MouseAddToPos(ev->x, -ev->y); + inputState.MouseAddToPos(ev->x, ev->y); return true; } diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index facddfea2..dd46433b1 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -140,9 +140,9 @@ void processMovement(HIDInput* const hidInput, InputPacket* const inputBuffer, I // process player pitch input. if (!(inputBuffer->actions & SB_AIMMODE)) - currInput->horz += hidInput->mouseturny - hidInput->joyaxes[JOYAXIS_Pitch] * hidspeed * scaleAdjustf; + currInput->horz -= hidInput->mouseturny + hidInput->joyaxes[JOYAXIS_Pitch] * hidspeed * scaleAdjustf; else - currInput->fvel -= hidInput->mousemovey - hidInput->joyaxes[JOYAXIS_Pitch] * keymove * scaleAdjustf; + currInput->fvel += hidInput->mousemovey + hidInput->joyaxes[JOYAXIS_Pitch] * keymove * scaleAdjustf; // process movement input. currInput->fvel += moving * keymove;