diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -13,6 +13,7 @@ cTVGuideConfig::cTVGuideConfig(void) { hugeStepHours = 24; hideLastChannelGroup = 0; channelJumpMode = eGroupJump; + addSubtitleToTimer = 1; closeOnSwitch = 0; numKeyMode = eChannelJump; blueKeyMode = eBlueKeyFavorites; @@ -67,6 +68,7 @@ bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) { else if (!strcasecmp(Name, "useRemoteTimers")) useRemoteTimers = atoi(Value); else if (!strcasecmp(Name, "instRecFolderMode")) instRecFolderMode = atoi(Value); else if (!strcasecmp(Name, "instRecFixedFolder")) instRecFixedFolder = atoi(Value); + else if (!strcasecmp(Name, "addSubtitleToTimer")) addSubtitleToTimer = atoi(Value); else if (!strcasecmp(Name, "favWhatsOnNow")) favWhatsOnNow = atoi(Value); else if (!strcasecmp(Name, "favWhatsOnNext")) favWhatsOnNext = atoi(Value); else if (!strcasecmp(Name, "favUseTime1")) favUseTime1 = atoi(Value); @@ -88,4 +90,4 @@ bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) { else return false; return true; -}
\ No newline at end of file +} |