summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorGerald Raaf <gerald.raaf@t-online.de>2017-05-23 20:16:52 +0200
committerFrank Neumann <fnu@yavdr.org>2017-05-23 20:16:52 +0200
commitb09b9e58bb7b168e37bace2fccddac2111c511c3 (patch)
tree8ce7facd7ace36cce7ee5c600ee5e1b7a15b7cf6 /setup.c
parent3aa2870beca208e9d41aa939a743c8f333a75b2c (diff)
downloadvdr-plugin-text2skin-b09b9e58bb7b168e37bace2fccddac2111c511c3.tar.gz
vdr-plugin-text2skin-b09b9e58bb7b168e37bace2fccddac2111c511c3.tar.bz2
Correct image display using TT6400 high level osd.
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/setup.c b/setup.c
index d59b7fa..18da5ba 100644
--- a/setup.c
+++ b/setup.c
@@ -13,7 +13,8 @@ cText2SkinSetup::cText2SkinSetup(void):
ShowAux(true),
StripAux(true),
CheckTimerConflict(false),
- MaxCacheFill(25)
+ MaxCacheFill(25),
+ SupportOldSkins(true)
{
}
@@ -25,6 +26,7 @@ bool cText2SkinSetup::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "StripAux") == 0) StripAux = atoi(Value);
else if (strcmp(Name, "CheckTimerConflict") == 0) CheckTimerConflict = atoi(Value);
else if (strcmp(Name, "MaxCacheFill") == 0) MaxCacheFill = atoi(Value);
+ else if (strcmp(Name, "SupportOldSkins") == 0) SupportOldSkins = atoi(Value);
else return false;
return true;
}