mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed cOsd::GetBitmap() to always return NULL if a non-exising area is requested
This commit is contained in:
parent
e33824217b
commit
40bfe40368
3
HISTORY
3
HISTORY
@ -7417,8 +7417,9 @@ Video Disk Recorder Revision History
|
|||||||
plugins to display these items in a more elaborate way than just a simple line of
|
plugins to display these items in a more elaborate way than just a simple line of
|
||||||
text.
|
text.
|
||||||
|
|
||||||
2012-12-11: Version 1.7.34
|
2012-12-15: Version 1.7.34
|
||||||
|
|
||||||
- Changed the type of the TimerMatch parameter in cSkinDisplayMenu::SetItemEvent() from
|
- Changed the type of the TimerMatch parameter in cSkinDisplayMenu::SetItemEvent() from
|
||||||
'int' to 'eTimerEvent' (reported by Christoph Haubrich).
|
'int' to 'eTimerEvent' (reported by Christoph Haubrich).
|
||||||
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
- Updated the Estonian OSD texts (thanks to Arthur Konovalov).
|
||||||
|
- Fixed cOsd::GetBitmap() to always return NULL if a non-exising area is requested.
|
||||||
|
6
osd.c
6
osd.c
@ -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: osd.c 2.32 2012/06/09 14:37:24 kls Exp $
|
* $Id: osd.c 2.33 2012/12/15 11:16:41 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "osd.h"
|
#include "osd.h"
|
||||||
@ -1683,9 +1683,7 @@ void cOsd::SetAntiAliasGranularity(uint FixedColors, uint BlendColors)
|
|||||||
|
|
||||||
cBitmap *cOsd::GetBitmap(int Area)
|
cBitmap *cOsd::GetBitmap(int Area)
|
||||||
{
|
{
|
||||||
if (isTrueColor)
|
return Area < numBitmaps ? (isTrueColor ? bitmaps[0] : bitmaps[Area]) : NULL;
|
||||||
Area = 0; // returns the dummy bitmap
|
|
||||||
return Area < numBitmaps ? bitmaps[Area] : NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cPixmap *cOsd::CreatePixmap(int Layer, const cRect &ViewPort, const cRect &DrawPort)
|
cPixmap *cOsd::CreatePixmap(int Layer, const cRect &ViewPort, const cRect &DrawPort)
|
||||||
|
Loading…
Reference in New Issue
Block a user