From f5ce60fa6ea2a15bf3b176e5afbdf785be03a999 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 2 Nov 2022 13:32:07 +0100 Subject: [PATCH] =?UTF-8?q?-=20fixed=20issues=20with=20negative=20values?= =?UTF-8?q?=20being=20passed=20to=20sqrt=20f=C3=BCr=20calculating=20RRRA's?= =?UTF-8?q?=20motorcyle=20and=20boat.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/games/duke/src/input.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 22ce86cf6..519b56de6 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -595,7 +595,7 @@ static double motoApplyTurn(player_struct* p, ControlInfo* const hidInput, bool turnvel -= isTurboTurnTime() && p->MotoSpeed > 0 ? baseVel : baseVel * velScale; if (hidInput->mouseturnx < 0) - turnvel -= sqrt((p->MotoSpeed > 0 ? baseVel : baseVel * velScale) * -(hidInput->mouseturnx / factor) * 2.); + turnvel -= Sgn(baseVel) * sqrt((p->MotoSpeed > 0 ? abs(baseVel) : abs(baseVel) * velScale) * -(hidInput->mouseturnx / factor) * 2.); if (hidInput->dyaw < 0) turnvel += (p->MotoSpeed > 0 ? baseVel : baseVel * velScale) * hidInput->dyaw; @@ -614,7 +614,7 @@ static double motoApplyTurn(player_struct* p, ControlInfo* const hidInput, bool turnvel += isTurboTurnTime() && p->MotoSpeed > 0 ? baseVel : baseVel * velScale; if (hidInput->mouseturnx > 0) - turnvel += sqrt((p->MotoSpeed > 0 ? baseVel : baseVel * velScale) * (hidInput->mouseturnx / factor) * 2.); + turnvel += Sgn(baseVel) * sqrt((p->MotoSpeed > 0 ? abs(baseVel) : abs(baseVel) * velScale) * (hidInput->mouseturnx / factor) * 2.); if (hidInput->dyaw > 0) turnvel += (p->MotoSpeed > 0 ? baseVel : baseVel * velScale) * hidInput->dyaw; @@ -670,7 +670,7 @@ static double boatApplyTurn(player_struct *p, ControlInfo* const hidInput, bool turnvel -= isTurboTurnTime() ? baseVel : baseVel * velScale; if (hidInput->mouseturnx < 0) - turnvel -= sqrt(baseVel * -(hidInput->mouseturnx / factor) * 2.); + turnvel -= Sgn(baseVel) * sqrt(abs(baseVel) * -(hidInput->mouseturnx / factor) * 2.); if (hidInput->dyaw < 0) turnvel += baseVel * hidInput->dyaw; @@ -691,7 +691,7 @@ static double boatApplyTurn(player_struct *p, ControlInfo* const hidInput, bool turnvel += isTurboTurnTime() ? baseVel : baseVel * velScale; if (hidInput->mouseturnx > 0) - turnvel += sqrt(baseVel * (hidInput->mouseturnx / factor) * 2.); + turnvel += Sgn(baseVel) * sqrt(abs(baseVel) * (hidInput->mouseturnx / factor) * 2.); if (hidInput->dyaw > 0) turnvel += baseVel * hidInput->dyaw;