summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-08-04 19:21:11 +0200
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-08-04 19:21:11 +0200
commit30a1dd2c8ead480f5e61a6ddfb55e1d6ea920f06 (patch)
tree4ae05842e02c1006b7fbf1c386d353a24faf41dd /config.c
parent65c2d52d64f2667e9238413a6d3ffc8a8ab5c603 (diff)
downloadskin-flatplus-30a1dd2c8ead480f5e61a6ddfb55e1d6ea920f06.tar.gz
skin-flatplus-30a1dd2c8ead480f5e61a6ddfb55e1d6ea920f06.tar.bz2
new time seconds scale option
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.c b/config.c
index 3a6221f1..2f5f0b6d 100644
--- a/config.c
+++ b/config.c
@@ -30,7 +30,7 @@ cFlatConfig::cFlatConfig(void) {
RecordingResolutionAspectShow = true;
RecordingFormatShow = true;
RecordingSimpleAspectFormat = true;
- RecordingSmallSecs = true;
+ TimeSecsScale = 1.0;
RecordingAdditionalInfoShow = true;
EpgAdditionalInfoShow = true;
@@ -255,7 +255,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "DiskUsageFree") == 0) DiskUsageFree = atoi(Value);
else if (strcmp(Name, "ChannelBitrateShow") == 0) ChannelBitrateShow = atoi(Value);
else if (strcmp(Name, "TopBarFontClockScale") == 0) TopBarFontClockScale = atod(Value);
- else if (strcmp(Name, "RecordingSmallSecs") == 0) RecordingSmallSecs = atoi(Value);
+ else if (strcmp(Name, "TimeSecsScale") == 0) TimeSecsScale = atod(Value);
else if (strcmp(Name, "ChannelBitrateShowCalcInterval") == 0) ChannelBitrateShowCalcInterval = atoi(Value);
else return false;