mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Ensure GameInput::Clear()
clears the entire object.
* Unused mouse input could still accumulate during screenjobs (level end stats, etc).
This commit is contained in:
parent
23bff9f701
commit
b4ea03b8ef
1 changed files with 1 additions and 5 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue