diff options
author | scop <scop> | 2007-04-28 19:00:10 +0000 |
---|---|---|
committer | scop <scop> | 2007-04-28 19:00:10 +0000 |
commit | f800cb7ba497e749bc312037dad96719d2b48a27 (patch) | |
tree | dc042905230b64b01daf43c25f7ffb0bd0d84bbf /dxr3.c | |
parent | 8454ae7bf6bfe4d0e94303805d416598d80b5d9c (diff) | |
download | vdr-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.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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)); |