diff options
author | Gerald Raaf <gerald.raaf@t-online.de> | 2017-05-23 20:16:52 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-05-23 20:16:52 +0200 |
commit | b09b9e58bb7b168e37bace2fccddac2111c511c3 (patch) | |
tree | 8ce7facd7ace36cce7ee5c600ee5e1b7a15b7cf6 /setup.c | |
parent | 3aa2870beca208e9d41aa939a743c8f333a75b2c (diff) | |
download | vdr-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.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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; } |