diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2013-03-02 15:05:31 +0100 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2013-03-02 15:05:31 +0100 |
commit | fe371a00ce060baafd4ed658c78ad5a298ea35bf (patch) | |
tree | 113c9dd9454ca516d3ddebab57d24ec4690bafa7 /skinenigmang.c | |
parent | 4f506c90f849598181e361412bb6028fdf2c6dae (diff) | |
download | vdr-plugin-skinenigmang-fe371a00ce060baafd4ed658c78ad5a298ea35bf.tar.gz vdr-plugin-skinenigmang-fe371a00ce060baafd4ed658c78ad5a298ea35bf.tar.bz2 |
Display Category/Genre/Contents in channel OSD (Submitted by dimeptr; Closes #1161)
Diffstat (limited to 'skinenigmang.c')
-rw-r--r-- | skinenigmang.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/skinenigmang.c b/skinenigmang.c index 0eabe3a..708e7b2 100644 --- a/skinenigmang.c +++ b/skinenigmang.c @@ -187,6 +187,7 @@ bool cPluginSkinEnigma::SetupParse(const char *OptionName, const char *Value) else if (!strcasecmp(OptionName, "ShowMarker")) EnigmaConfig.showMarker = atoi(Value); else if (!strcasecmp(OptionName, "ShowVPS")) EnigmaConfig.showVps = atoi(Value); else if (!strcasecmp(OptionName, "ShowFlags")) EnigmaConfig.showFlags = atoi(Value); + else if (!strcasecmp(OptionName, "ShowCatGenCon")) EnigmaConfig.showCatGenCon = atoi(Value); else if (!strcasecmp(OptionName, "CacheSize")) EnigmaConfig.cacheSize = atoi(Value); else if (!strcasecmp(OptionName, "UseChannelId")) EnigmaConfig.useChannelId = atoi(Value); else if (!strcasecmp(OptionName, "NumReruns")) EnigmaConfig.numReruns = atoi(Value); |