summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CONTRIBUTORS5
-rw-r--r--HISTORY5
-rw-r--r--config.h4
-rw-r--r--interface.c3
4 files changed, 13 insertions, 4 deletions
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 260cb592..dd25ca60 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -400,7 +400,10 @@ Jürgen Zimmermann <jnzimmer@informatik.uni-kl.de>
for adding some missing #includes to files in libdtv for gcc 3.2
Helmut Auer <vdr@helmutauer.de>
- for reporting a superfluous error message in cLockFile.
+ for reporting a superfluous error message in cLockFile
Jeremy Hall <jhall@UU.NET>
for fixing an incomplete initialization of the filter parameters in eit.c
+
+Oliver Endriss <o.endriss@gmx.de>
+ for fixing a missing Flush() call in the remote control learning procedure
diff --git a/HISTORY b/HISTORY
index 12146a02..a264ac2f 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1535,3 +1535,8 @@ Video Disk Recorder Revision History
- Fixed handling DVD subtitles in the SPU decoder (thanks to Andreas Schultz).
- Avoiding restarts due to 'panic level' when switching channels on the primary
device during EPG scan.
+
+2002-09-30: Version 1.1.12
+
+- Fixed a missing Flush() call in the remote control learning procedure (thanks
+ to Oliver Endriss).
diff --git a/config.h b/config.h
index dc043054..c8a9cdd0 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.129 2002/09/29 10:42:17 kls Exp $
+ * $Id: config.h 1.130 2002/09/30 15:57:23 kls Exp $
*/
#ifndef __CONFIG_H
@@ -20,7 +20,7 @@
#include "eit.h"
#include "tools.h"
-#define VDRVERSION "1.1.11"
+#define VDRVERSION "1.1.12"
#define MAXPRIORITY 99
#define MAXLIFETIME 99
diff --git a/interface.c b/interface.c
index 3f1fba8f..64c74894 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.55 2002/09/29 12:50:22 kls Exp $
+ * $Id: interface.c 1.56 2002/09/30 15:32:10 kls Exp $
*/
#include "interface.h"
@@ -366,6 +366,7 @@ void cInterface::QueryKeys(cRemote *Remote)
ClearEol(0, 7);
ClearEol(0, 8);
ClearEol(0, 9);
+ Flush();
for (;;) {
Key = cRemote::Get(100);
if (Key == kUp) {