summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/config.c b/config.c
index b5aaabb..72cfcc9 100644
--- a/config.c
+++ b/config.c
@@ -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
+}