summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.c b/config.c
index 72cfcc9..cbf0124 100644
--- a/config.c
+++ b/config.c
@@ -19,6 +19,7 @@ cTVGuideConfig::cTVGuideConfig(void) {
blueKeyMode = eBlueKeyFavorites;
intelligentSwitch = 0;
//settings for rerun display
+ useSubtitleRerun = 0;
rerunAmount = 10;
rerunDistance = 2;
rerunMaxChannel = 0;
@@ -62,6 +63,7 @@ bool cTVGuideConfig::SetupParse(const char *Name, const char *Value) {
else if (!strcasecmp(Name, "numKeyMode")) numKeyMode = atoi(Value);
else if (!strcasecmp(Name, "blueKeyMode")) blueKeyMode = atoi(Value);
else if (!strcasecmp(Name, "intelligentSwitch")) intelligentSwitch = atoi(Value);
+ else if (!strcasecmp(Name, "UseSubtitleRerun")) useSubtitleRerun = atoi(Value);
else if (!strcasecmp(Name, "rerunAmount")) rerunAmount = atoi(Value);
else if (!strcasecmp(Name, "rerunDistance")) rerunDistance = atoi(Value);
else if (!strcasecmp(Name, "rerunMaxChannel")) rerunMaxChannel = atoi(Value);