diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-24 21:28:35 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2019-05-24 21:28:35 +0200 |
commit | 96aa4cacae85d94ff0d7892e511874f3d2b6865f (patch) | |
tree | 288f7a48e7f3f541750eb38144c9e85ca6d2f672 /osd.c | |
parent | 4242fa7f22fe31e210640971b2bf21232a23807d (diff) | |
download | vdr-96aa4cacae85d94ff0d7892e511874f3d2b6865f.tar.gz vdr-96aa4cacae85d94ff0d7892e511874f3d2b6865f.tar.bz2 |
The default maximum size of a cPixmap has been raised to the maximum possible value
Diffstat (limited to 'osd.c')
-rw-r--r-- | osd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: osd.c 4.5 2018/04/06 08:43:15 kls Exp $ + * $Id: osd.c 4.6 2019/05/24 21:28:35 kls Exp $ */ #include "osd.h" @@ -1643,7 +1643,7 @@ int cOsd::osdLeft = 0; int cOsd::osdTop = 0; int cOsd::osdWidth = 0; int cOsd::osdHeight = 0; -cSize cOsd::maxPixmapSize(2048, 2048); +cSize cOsd::maxPixmapSize(INT_MAX, INT_MAX); cVector<cOsd *> cOsd::Osds; cMutex cOsd::mutex; |