From de5b73c60f861674143ea2d852d576fd4a324237 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sun, 19 Mar 2023 11:13:48 +1100 Subject: [PATCH] - SW: Fix strafing issue due to missing bool negation. --- source/core/gamestruct.h | 5 ++++- source/games/sw/src/game.h | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/source/core/gamestruct.h b/source/core/gamestruct.h index 1dbea4441..7d6264f3d 100644 --- a/source/core/gamestruct.h +++ b/source/core/gamestruct.h @@ -90,7 +90,6 @@ struct GameInterface virtual void DrawPlayerSprite(const DVector2& origin, bool onteam) {} virtual void SetAmbience(bool on) {} virtual void ExitFromMenu() { throw CExitEvent(0); } - virtual void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) { processMovement(hidInput, inputBuffer, currInput, scaleAdjust); } virtual void UpdateSounds() {} virtual void ErrorCleanup() {} virtual void Startup() {} @@ -124,6 +123,10 @@ struct GameInterface virtual void RemoveQAVInterpProps(const int res_id) { } virtual bool WantEscape() { return false; } virtual void StartSoundEngine() = 0; + virtual void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) + { + processMovement(hidInput, inputBuffer, currInput, scaleAdjust); + } virtual FString statFPS() { diff --git a/source/games/sw/src/game.h b/source/games/sw/src/game.h index e8160e584..560677e74 100644 --- a/source/games/sw/src/game.h +++ b/source/games/sw/src/game.h @@ -1866,7 +1866,6 @@ struct GameInterface : public ::GameInterface void SetAmbience(bool on) override { if (on) StartAmbientSound(); else StopAmbientSound(); } void UpdateSounds() override; void ErrorCleanup() override; - void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override { processMovement(hidInput, inputBuffer, currInput, scaleAdjust, 0, Player[myconnectindex].sop, Player[myconnectindex].sop_control ? 3. / 1.40625 : 1.); } void DrawBackground(void) override; void Ticker(void) override; void Render() override; @@ -1889,6 +1888,10 @@ struct GameInterface : public ::GameInterface void ExitFromMenu() override; int GetCurrentSkill() override; void StartSoundEngine() override; + void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override + { + processMovement(hidInput, inputBuffer, currInput, scaleAdjust, 0, !Player[myconnectindex].sop, Player[myconnectindex].sop_control ? 3. / 1.40625 : 1.); + } GameStats getStats() override;