mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-24 10:40:46 +00:00
Add sc_Space to I_AdvanceTrigger() and I_AdvanceTriggerClear()
git-svn-id: https://svn.eduke32.com/eduke32@7856 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
e65fb8ab2a
commit
762c3ebbf6
1 changed files with 2 additions and 0 deletions
|
@ -56,6 +56,7 @@ void I_ClearAllInput(void)
|
|||
int32_t I_AdvanceTrigger(void)
|
||||
{
|
||||
return (
|
||||
KB_KeyPressed(sc_Space) ||
|
||||
KB_KeyPressed(sc_kpad_Enter) ||
|
||||
KB_KeyPressed(sc_Enter) ||
|
||||
#if !defined EDUKE32_TOUCH_DEVICES
|
||||
|
@ -77,6 +78,7 @@ int32_t I_AdvanceTrigger(void)
|
|||
void I_AdvanceTriggerClear(void)
|
||||
{
|
||||
KB_FlushKeyboardQueue();
|
||||
KB_ClearKeyDown(sc_Space);
|
||||
KB_ClearKeyDown(sc_kpad_Enter);
|
||||
KB_ClearKeyDown(sc_Enter);
|
||||
MOUSE_ClearButton(LEFT_MOUSE);
|
||||
|
|
Loading…
Reference in a new issue