mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a missing Flush() call in the remote control learning procedure
This commit is contained in:
parent
2c8aa42043
commit
b7615a7ae1
@ -400,7 +400,10 @@ J
|
||||
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
|
||||
|
5
HISTORY
5
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).
|
||||
|
4
config.h
4
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
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user