From 1af60fb02b43395a28ab03c20d3b043747804662 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 18 Mar 2023 13:02:06 +1100 Subject: [PATCH] - Exhumed: Clear local input accumulation buffer after copying a packet, just like the other games. --- source/games/exhumed/src/input.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/source/games/exhumed/src/input.cpp b/source/games/exhumed/src/input.cpp index e460ab936..bca31c758 100644 --- a/source/games/exhumed/src/input.cpp +++ b/source/games/exhumed/src/input.cpp @@ -57,12 +57,7 @@ void GameInterface::GetInput(const double scaleAdjust, InputPacket* packet) HIDInput hidInput; getHidInput(&hidInput); - if (packet != nullptr) - { - localInput = {}; - ApplyGlobalInput(localInput, &hidInput); - if (PlayerList[nLocalPlayer].nHealth == 0) localInput.actions &= SB_OPEN; - } + ApplyGlobalInput(localInput, &hidInput); Player* pPlayer = &PlayerList[nLocalPlayer]; InputPacket input {}; @@ -90,6 +85,7 @@ void GameInterface::GetInput(const double scaleAdjust, InputPacket* packet) if (packet) { *packet = localInput; + localInput = {}; } }