diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-30 15:57:23 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-09-30 15:57:23 +0200 |
commit | b7615a7ae144789da14d32019b2f86fc4bf6dcef (patch) | |
tree | 8bc22453c06c4a81fe794b83805380b2c1f32c0a | |
parent | 2c8aa42043b35e19600f1181369f1ecb076cf5db (diff) | |
download | vdr-b7615a7ae144789da14d32019b2f86fc4bf6dcef.tar.gz vdr-b7615a7ae144789da14d32019b2f86fc4bf6dcef.tar.bz2 |
Fixed a missing Flush() call in the remote control learning procedure
-rw-r--r-- | CONTRIBUTORS | 5 | ||||
-rw-r--r-- | HISTORY | 5 | ||||
-rw-r--r-- | config.h | 4 | ||||
-rw-r--r-- | interface.c | 3 |
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 @@ -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). @@ -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) { |