diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2000-10-08 16:34:17 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2000-10-08 16:34:17 +0200 |
commit | a36ff983f5f5304449185cf26e2275c41370d036 (patch) | |
tree | 17058373f8bd3955edb49f28a239b03ae854805f /interface.c | |
parent | 212468e2e0c9809486040c019005b8da65214f81 (diff) | |
download | vdr-a36ff983f5f5304449185cf26e2275c41370d036.tar.gz vdr-a36ff983f5f5304449185cf26e2275c41370d036.tar.bz2 |
Fixed key release handling
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 6 |
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; } |