Skip to content

Commit 485b055

Browse files
committed
Change bind hold default on Android
Due to touchscreen quick tap function, binding runs into problems with the default setting that works well on other platforms. Using a nonzero value avoids that problem.
1 parent bf3752e commit 485b055

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

config.def.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,11 @@
16191619
#endif
16201620

16211621
#define DEFAULT_INPUT_BIND_TIMEOUT 3
1622+
#if defined(ANDROID)
1623+
#define DEFAULT_INPUT_BIND_HOLD 1
1624+
#else
16221625
#define DEFAULT_INPUT_BIND_HOLD 0
1626+
#endif
16231627
#define DEFAULT_INPUT_POLL_TYPE_BEHAVIOR 2
16241628
#define DEFAULT_INPUT_HOTKEY_BLOCK_DELAY 5
16251629
#define DEFAULT_INPUT_HOTKEY_DEVICE_MERGE false

0 commit comments

Comments
 (0)