summaryrefslogtreecommitdiff
path: root/dxr3.c
diff options
context:
space:
mode:
authorscop <scop>2007-04-28 19:00:10 +0000
committerscop <scop>2007-04-28 19:00:10 +0000
commitf800cb7ba497e749bc312037dad96719d2b48a27 (patch)
treedc042905230b64b01daf43c25f7ffb0bd0d84bbf /dxr3.c
parent8454ae7bf6bfe4d0e94303805d416598d80b5d9c (diff)
downloadvdr-plugin-dxr3-f800cb7ba497e749bc312037dad96719d2b48a27.tar.gz
vdr-plugin-dxr3-f800cb7ba497e749bc312037dad96719d2b48a27.tar.bz2
Could be a good idea to actually use the UseWSS value from config...
Diffstat (limited to 'dxr3.c')
-rw-r--r--dxr3.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/dxr3.c b/dxr3.c
index ab56f1c..b858c25 100644
--- a/dxr3.c
+++ b/dxr3.c
@@ -3,7 +3,7 @@
*
* See the README file for copyright information and how to reach the author.
*
- * $Id: dxr3.c,v 1.1.2.31 2007/04/26 21:02:41 scop Exp $
+ * $Id: dxr3.c,v 1.1.2.32 2007/04/28 19:00:10 scop Exp $
*
*/
@@ -204,6 +204,11 @@ bool cPluginDxr3::SetupParse(const char *Name, const char *Value)
cDxr3ConfigData::Instance().SetVideoMode((eVideoMode) atoi(Value));
return true;
}
+ if (!strcasecmp(Name, "UseWSS"))
+ {
+ cDxr3ConfigData::Instance().SetUseWSS(atoi(Value));
+ return true;
+ }
if (!strcasecmp(Name, "HideMenu"))
{
cDxr3ConfigData::Instance().SetHideMenu(atoi(Value));