diff options
Diffstat (limited to 'media-plugins/vdr-xineliboutput/files/xineliboutput-0.99rc-keyboard-fix.patch')
-rw-r--r-- | media-plugins/vdr-xineliboutput/files/xineliboutput-0.99rc-keyboard-fix.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/media-plugins/vdr-xineliboutput/files/xineliboutput-0.99rc-keyboard-fix.patch b/media-plugins/vdr-xineliboutput/files/xineliboutput-0.99rc-keyboard-fix.patch deleted file mode 100644 index e13f257d99c5..000000000000 --- a/media-plugins/vdr-xineliboutput/files/xineliboutput-0.99rc-keyboard-fix.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- xineliboutput-0.99rc/xine_frontend_main.c 2006-04-08 23:42:13.000000000 +0300 -+++ xineliboutput/xine_frontend_main.c 2006-05-14 07:46:01.000000000 +0300 -@@ -1,6 +1,10 @@ - /* - * Simple main() routine for stand-alone frontends. - * -+ * See the main source file 'xineliboutput.c' for copyright information and -+ * how to reach the author. -+ * -+ * $Id: xineliboutput-0.99rc-keyboard-fix.patch,v 1.1 2006/05/14 18:36:32 zzam Exp $ - * - */ - -@@ -68,7 +72,7 @@ - uint64_t code = ch; - char str[64]; - while(poll(&pfd,1,0) == 1 && read(STDIN_FILENO,&ch,1) == 1) -- code = (code<<8) & ch; -+ code = (code<<8) | (ch & 0xff); - snprintf(str, sizeof(str), "%016LX", code); - if(find_input((fe_t*)fe)) - process_xine_keypress(((fe_t*)fe)->input, "KBD", str, 0, 0); |