1
0
mirror of https://github.com/rofafor/vdr-plugin-femon.git synced 2023-10-10 13:36:53 +02:00

Added missing MINFONTSIZE and MAXFONTSIZE defines.

This commit is contained in:
Rolf Ahrenberg 2009-06-18 23:08:25 +03:00
parent db9735b80b
commit 6086c135c7

View File

@ -116,6 +116,14 @@
#define OSDCLEARINFO() \ #define OSDCLEARINFO() \
m_Osd->DrawRectangle(0, OSDINFOWIN_Y(0), OSDWIDTH, OSDINFOWIN_Y(OSDINFOHEIGHT) - 1, clrTransparent) m_Osd->DrawRectangle(0, OSDINFOWIN_Y(0), OSDWIDTH, OSDINFOWIN_Y(OSDINFOHEIGHT) - 1, clrTransparent)
#ifndef MINFONTSIZE
#define MINFONTSIZE 10
#endif
#ifndef MAXFONTSIZE
#define MAXFONTSIZE 64
#endif
class cFemonDummyFont : public cFont { class cFemonDummyFont : public cFont {
public: public:
virtual int Width(uint c) const { return 10; } virtual int Width(uint c) const { return 10; }