summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.c b/setup.c
index a2ea090..6a27f6d 100644
--- a/setup.c
+++ b/setup.c
@@ -12,7 +12,13 @@ cText2SkinSetup::cText2SkinSetup(void) {
MenuScrollbar = false;
MarqueeLeftRight = true;
MarqueeReset = false;
+#if VDRVERSNUM >= 10344
+ ShowAux = true;
+ StripAux = true;
+#endif
+#if VDRVERSNUM >= 10330
CheckTimerConflict = false;
+#endif
MaxCacheFill = 25;
}
@@ -20,7 +26,13 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
if (strcmp(Name, "MenuScrollbar") == 0) MenuScrollbar = atoi(Value);
else if (strcmp(Name, "MarqueeLeftRight") == 0) MarqueeLeftRight = atoi(Value);
else if (strcmp(Name, "MarqueeReset") == 0) MarqueeReset = atoi(Value);
+#if VDRVERSNUM >= 10344
+ else if (strcmp(Name, "ShowAux") == 0) ShowAux = atoi(Value);
+ else if (strcmp(Name, "StripAux") == 0) StripAux = atoi(Value);
+#endif
+#if VDRVERSNUM >= 10330
else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value);
+#endif
else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
else return false;