From d02717ad693b28c120d0179f5487352e41ec172f Mon Sep 17 00:00:00 2001 From: Markus Volk Date: Thu, 27 Feb 2020 08:19:52 +0100 Subject: [PATCH] rcinput.cpp: fix key repeat for osmio4k --- src/driver/rcinput.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/driver/rcinput.cpp b/src/driver/rcinput.cpp index 0e0f0078c..61b305512 100644 --- a/src/driver/rcinput.cpp +++ b/src/driver/rcinput.cpp @@ -1429,6 +1429,7 @@ void CRCInput::getMsg_us(neutrino_msg_t * msg, neutrino_msg_data_t * data, uint6 if ((now_pressed > last_keypress + repeat_block_generic) || /* accept all keys after time discontinuity: */ (now_pressed < last_keypress)) + rc_last_repeat_key = trkey; #endif { last_keypress = now_pressed;