summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--remote.c5
2 files changed, 3 insertions, 3 deletions
diff --git a/HISTORY b/HISTORY
index 090b1d9a..b95b8a04 100644
--- a/HISTORY
+++ b/HISTORY
@@ -3104,3 +3104,4 @@ Video Disk Recorder Revision History
The sequence of 'name' and 'short name' in the channels.conf file has been
swapped (see man vdr(5)).
- Added the 'portal name' to cChannels (thanks to Marco Schlüßler).
+- Fixed handling key codes that start with 0x1B in the KBD remote control code.
diff --git a/remote.c b/remote.c
index b435bc46..2d382e0b 100644
--- a/remote.c
+++ b/remote.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: remote.c 1.40 2004/05/28 14:19:52 kls Exp $
+ * $Id: remote.c 1.41 2004/10/31 14:05:12 kls Exp $
*/
#include "remote.h"
@@ -265,7 +265,6 @@ void cKbdRemote::Action(void)
if (Poller.Poll(100)) {
uint64 Command = 0;
uint i = 0;
- int t0 = time_ms();
while (active && i < sizeof(Command)) {
uchar ch;
int r = read(STDIN_FILENO, &ch, 1);
@@ -280,7 +279,7 @@ void cKbdRemote::Action(void)
// of their codes, so we'll need to wait some 100ms to see if
// there is more coming up - or whether this really is the 'ESC'
// key (if somebody knows how to clean this up, please let me know):
- if (Command == 0x1B && time_ms() - t0 < 100)
+ if (Command == 0x1B && Poller.Poll(100))
continue;
if (Command) {
if (rawMode || !Put(Command)) {