summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/config.c b/config.c
index f5ee8386..26c5d0e1 100644
--- a/config.c
+++ b/config.c
@@ -122,6 +122,9 @@ cFlatConfig::cFlatConfig(void) {
TVScraperChanInfoShowPoster = 1;
TVScraperChanInfoPosterSize = 0.01;
+ TVScraperReplayInfoShowPoster = 1;
+ TVScraperReplayInfoPosterSize = 0.01;
+
TVScraperEPGInfoShowPoster = 1;
TVScraperRecInfoShowPoster = 1;
@@ -343,6 +346,8 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "ChannelWeatherShow") == 0) ChannelWeatherShow = atoi(Value);
else if (strcmp(Name, "PlaybackWeatherShow") == 0) PlaybackWeatherShow = atoi(Value);
else if (strcmp(Name, "WeatherFontSize") == 0) WeatherFontSize = atod(Value);
+ else if (strcmp(Name, "TVScraperReplayInfoShowPoster") == 0) TVScraperReplayInfoShowPoster = atoi(Value);
+ else if (strcmp(Name, "TVScraperReplayInfoPosterSize") == 0) TVScraperReplayInfoPosterSize = atod(Value);
else return false;