aboutsummaryrefslogtreecommitdiffstats
path: root/src/hid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/hid.c')
-rw-r--r--src/hid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hid.c b/src/hid.c
index a406a2c..e322292 100644
--- a/src/hid.c
+++ b/src/hid.c
@@ -162,7 +162,7 @@ update_report(void)
for (y = 0; y < KEY_ROWS; y++) {
for (x = 0; x < KEY_COLS; x++) {
if (keymat[y][x] != keymat_prev[y][x]) {
- if (bounce_mat[y][x] > now_us - 25000) {
+ if (bounce_mat[y][x] > now_us - 50000) {
WARN("Bouncing prevented %i vs %i",
keymat[y][x], keymat_prev[y][x]);
keymat[y][x] = keymat_prev[y][x];