- Ensure GameInput::Clear() clears the entire object.

* Unused mouse input could still accumulate during screenjobs (level end stats, etc).
This commit is contained in:
Mitchell Richters 2023-04-04 10:53:19 +10:00
parent 23bff9f701
commit b4ea03b8ef

View file

@ -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.