From 485b055d48f304f785a90f214fb7a84576bafa4a Mon Sep 17 00:00:00 2001 From: zoltanvb Date: Sun, 16 Mar 2025 14:28:21 +0100 Subject: [PATCH] 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. --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index fbfe69477b..2e36cc09a3 100644 --- a/config.def.h +++ b/config.def.h @@ -1619,7 +1619,11 @@ #endif #define DEFAULT_INPUT_BIND_TIMEOUT 3 +#if defined(ANDROID) +#define DEFAULT_INPUT_BIND_HOLD 1 +#else #define DEFAULT_INPUT_BIND_HOLD 0 +#endif #define DEFAULT_INPUT_POLL_TYPE_BEHAVIOR 2 #define DEFAULT_INPUT_HOTKEY_BLOCK_DELAY 5 #define DEFAULT_INPUT_HOTKEY_DEVICE_MERGE false