mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- adapt ClearAllInput to new globalized code.
This commit is contained in:
parent
af7ad28ad6
commit
38cc094ac3
2 changed files with 1 additions and 2 deletions
|
@ -126,6 +126,7 @@ void InputState::ClearAllInput()
|
|||
ActionsToSend = 0;
|
||||
WeaponToSend = 0;
|
||||
dpad_lock = 0;
|
||||
lastCheck = 0;
|
||||
buttonMap.ResetButtonStates(); // this is important. If all input is cleared, the buttons must be cleared as well.
|
||||
gi->clearlocalinputstate(); // also clear game local input state.
|
||||
}
|
||||
|
|
|
@ -43,7 +43,6 @@ BEGIN_DUKE_NS
|
|||
// State timer counters.
|
||||
static int turnheldtime;
|
||||
static int lastcontroltime;
|
||||
static double lastCheck;
|
||||
static InputPacket loc; // input accumulation buffer.
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
@ -1068,7 +1067,6 @@ void GameInterface::clearlocalinputstate()
|
|||
loc = {};
|
||||
turnheldtime = 0;
|
||||
lastcontroltime = 0;
|
||||
lastCheck = 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue