Fixed a bug in resetting OSD color palettes

This commit is contained in:
Klaus Schmidinger 2003-08-24 11:42:08 +02:00
parent ca39b3f03a
commit 7c2283b502
3 changed files with 4 additions and 2 deletions

View File

@ -622,6 +622,7 @@ Torsten Herz <torsten.herz@web.de>
for fixing a possible deadlock when using the "Blue" button in the "Schedules" menu
to switch to an other channel
for reporting a wrong EPG bugfix code number for the MAX_USEFUL_SUBTITLE_LENGTH fix
for fixing a bug in resetting OSD color palettes
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
for reporting a problem with CPU load peaks (in the EPG scanner)

View File

@ -2324,3 +2324,4 @@ Video Disk Recorder Revision History
- Added a note about the config files of plugins to INSTALL (thanks to Thomas
Keil).
- VDR now continues to start up, even if there is an error in setup.conf.
- Fixed a bug in resetting OSD color palettes (thanks to Torsten Herz).

View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: osdbase.c 1.9 2003/08/15 13:47:51 kls Exp $
* $Id: osdbase.c 1.10 2003/08/24 11:38:27 kls Exp $
*/
#include "osdbase.h"
@ -70,7 +70,7 @@ int cPalette::Index(eDvbColor Color)
void cPalette::Reset(void)
{
for (int i = 0; i < numColors; i++)
used[i] = false;
used[i] = fetched[i] = false;
full = false;
}