summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/config.c b/config.c
index 68aac22e..cf5d0340 100644
--- a/config.c
+++ b/config.c
@@ -59,6 +59,10 @@ cFlatConfig::cFlatConfig(void) {
MenuEventView = 1;
MenuRecordingView = 1;
+ MenuRecordingShowCount = 1;
+ MenuTimerShowCount = 1;
+ MenuChannelShowCount = 1;
+
MenuFullOsd = 0;
MenuItemRecordingClearPercent = 1;
@@ -264,6 +268,9 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "TopBarHideClockText") == 0) TopBarHideClockText = atoi(Value);
else if (strcmp(Name, "ChannelTimeLeft") == 0) ChannelTimeLeft = atoi(Value);
else if (strcmp(Name, "MenuFullOsd") == 0) MenuFullOsd = atoi(Value);
+ else if (strcmp(Name, "MenuRecordingShowCount") == 0) MenuRecordingShowCount = atoi(Value);
+ else if (strcmp(Name, "MenuTimerShowCount") == 0) MenuTimerShowCount = atoi(Value);
+ else if (strcmp(Name, "MenuChannelShowCount") == 0) MenuChannelShowCount = atoi(Value);
else return false;