summaryrefslogtreecommitdiff
path: root/dvbdevice.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2007-10-13 11:17:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2007-10-13 11:17:56 +0200
commita20bd2a42ff8096e8525509f09e284f336590cff (patch)
treef18509dbe05fbe908e698afb1aab711b1599e890 /dvbdevice.c
parent42a80413525ac415d7552e899796b2a30707b88e (diff)
downloadvdr-a20bd2a42ff8096e8525509f09e284f336590cff.tar.gz
vdr-a20bd2a42ff8096e8525509f09e284f336590cff.tar.bz2
Only creating a new cDvbOsdProvider in cDvbDevice::MakePrimaryDevice() if 'On' is true
Diffstat (limited to 'dvbdevice.c')
-rw-r--r--dvbdevice.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dvbdevice.c b/dvbdevice.c
index 7d1a5c8c..5864f49e 100644
--- a/dvbdevice.c
+++ b/dvbdevice.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: dvbdevice.c 1.165 2007/08/17 13:37:56 kls Exp $
+ * $Id: dvbdevice.c 1.166 2007/10/13 11:15:50 kls Exp $
*/
#include "dvbdevice.h"
@@ -483,7 +483,7 @@ bool cDvbDevice::Initialize(void)
void cDvbDevice::MakePrimaryDevice(bool On)
{
- if (HasDecoder())
+ if (On && HasDecoder())
new cDvbOsdProvider(fd_osd);
}