From b09b9e58bb7b168e37bace2fccddac2111c511c3 Mon Sep 17 00:00:00 2001 From: Gerald Raaf Date: Tue, 23 May 2017 20:16:52 +0200 Subject: Correct image display using TT6400 high level osd. --- setup.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'setup.c') 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; } -- cgit v1.2.3