diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-15 15:00:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-01-15 15:00:00 +0100 |
commit | 709caf59b2c92ca1e7e3f4e8a856a53ac3d4a4f7 (patch) | |
tree | b6da98dce27264c41a22fa5f3c661a15ea05f1c0 /remote.c | |
parent | 0676448937e9f851d34380904a249b15bf97e14c (diff) | |
download | vdr-709caf59b2c92ca1e7e3f4e8a856a53ac3d4a4f7.tar.gz vdr-709caf59b2c92ca1e7e3f4e8a856a53ac3d4a4f7.tar.bz2 |
Added 0x5B to more-byte sequence detection
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: remote.c 1.47 2006/01/08 17:13:18 kls Exp $ + * $Id: remote.c 1.48 2006/01/15 15:00:00 kls Exp $ */ #include "remote.h" @@ -301,6 +301,7 @@ uint64 cKbdRemote::ReadKeySequence(void) k |= key1 & 0xFF; switch (key1) { case 0x31 ... 0x3F: // more-byte sequence + case 0x5B: // strange, may apparently occur do { if ((key1 = ReadKey()) < 0) break; // Sequence ends here |