From b4ea03b8ef91d2937bb9762defdce270667e3ec5 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 4 Apr 2023 10:53:19 +1000 Subject: [PATCH] - Ensure `GameInput::Clear()` clears the entire object. * Unused mouse input could still accumulate during screenjobs (level end stats, etc). --- source/core/gameinput.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/source/core/gameinput.h b/source/core/gameinput.h index 769b68038..d6c12de99 100644 --- a/source/core/gameinput.h +++ b/source/core/gameinput.h @@ -59,11 +59,7 @@ public: // Clear all values within this object. void Clear() { - inputBuffer = {}; - ActionsToSend = 0; - WeaponToSend = 0; - dpad_lock = 0; - turnheldtime = 0; + memset(this, 0, sizeof(*this)); } // Receives mouse input from OS for processing.