From e3e67f8a8ebee77b351a43ff79561ecb6955dea6 Mon Sep 17 00:00:00 2001 From: Maschell Date: Mon, 4 May 2026 19:14:08 +0200 Subject: [PATCH] Adjust the values for input repeating in the config menu --- source/utils/config/InputRepeater.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utils/config/InputRepeater.h b/source/utils/config/InputRepeater.h index 027f3c9..29208f2 100644 --- a/source/utils/config/InputRepeater.h +++ b/source/utils/config/InputRepeater.h @@ -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) {