Adjust the values for input repeating in the config menu
Some checks failed
CI-Release / clang-format (push) Has been cancelled
CI-Release / build-binary (push) Has been cancelled
CI-Release / deploy-binary (push) Has been cancelled

This commit is contained in:
Maschell 2026-05-04 19:14:08 +02:00
parent 92fd09a501
commit e3e67f8a8e

View File

@ -6,7 +6,7 @@ class InputRepeater {
public:
// thresholdDelay: frames to wait before starting repeat (e.g., 15)
// repeatRate: frames between repeats (e.g., 6)
explicit InputRepeater(uint32_t thresholdDelay = 15, uint32_t repeatRate = 6)
explicit InputRepeater(uint32_t thresholdDelay = 12, uint32_t repeatRate = 3)
: mThresholdDelay(thresholdDelay), mRepeatRate(repeatRate) {}
uint32_t update(const Input &input, uint32_t mask) {