Adjust the values for input repeating in the config menu

This commit is contained in:
Maschell 2026-05-04 19:14:08 +02:00
parent a9ba634df0
commit 4e08d84f54

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) {