mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a bug in resetting OSD color palettes
This commit is contained in:
parent
ca39b3f03a
commit
7c2283b502
@ -622,6 +622,7 @@ Torsten Herz <torsten.herz@web.de>
|
|||||||
for fixing a possible deadlock when using the "Blue" button in the "Schedules" menu
|
for fixing a possible deadlock when using the "Blue" button in the "Schedules" menu
|
||||||
to switch to an other channel
|
to switch to an other channel
|
||||||
for reporting a wrong EPG bugfix code number for the MAX_USEFUL_SUBTITLE_LENGTH fix
|
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>
|
Steffen Becker <stbecker@rbg.informatik.tu-darmstadt.de>
|
||||||
for reporting a problem with CPU load peaks (in the EPG scanner)
|
for reporting a problem with CPU load peaks (in the EPG scanner)
|
||||||
|
1
HISTORY
1
HISTORY
@ -2324,3 +2324,4 @@ Video Disk Recorder Revision History
|
|||||||
- Added a note about the config files of plugins to INSTALL (thanks to Thomas
|
- Added a note about the config files of plugins to INSTALL (thanks to Thomas
|
||||||
Keil).
|
Keil).
|
||||||
- VDR now continues to start up, even if there is an error in setup.conf.
|
- 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).
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* See the main source file 'vdr.c' for copyright information and
|
* See the main source file 'vdr.c' for copyright information and
|
||||||
* how to reach the author.
|
* 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"
|
#include "osdbase.h"
|
||||||
@ -70,7 +70,7 @@ int cPalette::Index(eDvbColor Color)
|
|||||||
void cPalette::Reset(void)
|
void cPalette::Reset(void)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < numColors; i++)
|
for (int i = 0; i < numColors; i++)
|
||||||
used[i] = false;
|
used[i] = fetched[i] = false;
|
||||||
full = false;
|
full = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user