From 27011984ef2fab5ecab3a9fc05931d3df18283dc Mon Sep 17 00:00:00 2001 From: vanhofen Date: Wed, 22 Feb 2017 14:53:25 +0100 Subject: [PATCH] rc_input: do always show key-presses in console; ... by mistake removed in 41f5815172e8544d27f89c6b43a966d76da34241 Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/056b47c09b8794bbca1f00d62dc25d33808ade26 Author: vanhofen Date: 2017-02-22 (Wed, 22 Feb 2017) Origin message was: ------------------ - rc_input: do always show key-presses in console; ... by mistake removed in 41f5815172e8544d27f89c6b43a966d76da34241 ------------------ This commit was generated by Migit --- src/driver/rcinput.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/rcinput.cpp b/src/driver/rcinput.cpp index 1678addeb..8357f2355 100644 --- a/src/driver/rcinput.cpp +++ b/src/driver/rcinput.cpp @@ -1382,7 +1382,7 @@ void CRCInput::getMsg_us(neutrino_msg_t * msg, neutrino_msg_data_t * data, uint6 } uint32_t trkey = translate(ev.code); - d_printf("key: %04x value %d, translate: %04x -%s-\n", ev.code, ev.value, trkey, getKeyName(trkey).c_str()); + printf("key: %04x value %d, translate: %04x -%s-\n", ev.code, ev.value, trkey, getKeyName(trkey).c_str()); if (trkey == RC_nokey) continue;