summaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2000-10-08 16:34:17 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2000-10-08 16:34:17 +0200
commita36ff983f5f5304449185cf26e2275c41370d036 (patch)
tree17058373f8bd3955edb49f28a239b03ae854805f /interface.c
parent212468e2e0c9809486040c019005b8da65214f81 (diff)
downloadvdr-a36ff983f5f5304449185cf26e2275c41370d036.tar.gz
vdr-a36ff983f5f5304449185cf26e2275c41370d036.tar.bz2
Fixed key release handling
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/interface.c b/interface.c
index bb741fc2..5940195f 100644
--- a/interface.c
+++ b/interface.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: interface.c 1.24 2000/10/08 12:15:36 kls Exp $
+ * $Id: interface.c 1.25 2000/10/08 16:34:17 kls Exp $
*/
#include "interface.h"
@@ -94,10 +94,10 @@ eKeys cInterface::Wait(int Seconds, bool KeepChar)
time_t timeout = time(NULL) + Seconds;
for (;;) {
Key = GetKey();
- if ((Key != kNone && (NORMALKEY(Key) != kOk || NORMALKEY(Key) == Key)) || time(NULL) > timeout)
+ if ((Key != kNone && (RAWKEY(Key) != kOk || RAWKEY(Key) == Key)) || time(NULL) > timeout)
break;
}
- if (KeepChar && ISNORMALKEY(Key))
+ if (KeepChar && ISRAWKEY(Key))
keyFromWait = Key;
return Key;
}