diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |