mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a compiler warning in font.c
This commit is contained in:
parent
c17328da87
commit
15927fd097
3
HISTORY
3
HISTORY
@ -8596,7 +8596,7 @@ Video Disk Recorder Revision History
|
||||
- Bumped all version numbers to 2.2.0.
|
||||
- Official release.
|
||||
|
||||
2015-04-18: Version 2.3.1
|
||||
2015-04-19: Version 2.3.1
|
||||
|
||||
- The new function cOsd::MaxPixmapSize() can be called to determine the maximum size
|
||||
a cPixmap may have on the current OSD. The 'osddemo' example has been modified
|
||||
@ -8635,3 +8635,4 @@ Video Disk Recorder Revision History
|
||||
VDR from using any DVB devices (suggested by Dietmar Spingler).
|
||||
- The -V and -h options now list the plugins in alphabetical order (suggested by
|
||||
Dietmar Spingler).
|
||||
- Fixed a compiler warning in font.c.
|
||||
|
4
font.c
4
font.c
@ -6,7 +6,7 @@
|
||||
*
|
||||
* BiDi support by Osama Alrawab <alrawab@hotmail.com> @2008 Tripoli-Libya.
|
||||
*
|
||||
* $Id: font.c 3.2 2014/01/07 12:19:45 kls Exp $
|
||||
* $Id: font.c 4.1 2015/04/19 11:13:45 kls Exp $
|
||||
*/
|
||||
|
||||
#include "font.h"
|
||||
@ -140,7 +140,7 @@ cFreetypeFont::cFreetypeFont(const char *Name, int CharHeight, int CharWidth)
|
||||
if (!error) {
|
||||
error = FT_Render_Glyph(face->glyph, FT_RENDER_MODE_NORMAL);
|
||||
if (!error) {
|
||||
if (face->glyph->bitmap.rows-face->glyph->bitmap_top > bottom)
|
||||
if (int(face->glyph->bitmap.rows-face->glyph->bitmap_top) > bottom)
|
||||
bottom = face->glyph->bitmap.rows-face->glyph->bitmap_top;
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user