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
1 changed files with 8 additions and 0 deletions

View File

@ -116,6 +116,14 @@
#define OSDCLEARINFO() \
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 {
public:
virtual int Width(uint c) const { return 10; }