diff options
Diffstat (limited to 'client/setup.c')
-rw-r--r-- | client/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/setup.c b/client/setup.c index 553a11f..41464d2 100644 --- a/client/setup.c +++ b/client/setup.c @@ -1,5 +1,5 @@ /* - * $Id: setup.c,v 1.5.2.1 2009/01/29 07:49:05 schmirl Exp $ + * $Id: setup.c,v 1.5.2.2 2009/02/03 10:26:24 schmirl Exp $ */ #include <vdr/menuitems.h> @@ -33,8 +33,8 @@ bool cStreamdevClientSetup::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "StreamFilters") == 0) StreamFilters = atoi(Value); else if (strcmp(Name, "SyncEPG") == 0) SyncEPG = atoi(Value); else if (strcmp(Name, "HideMenuEntry") == 0) HideMenuEntry = atoi(Value); - else if (strcmp(Name, "MinPriority") == 0) HideMenuEntry = atoi(Value); - else if (strcmp(Name, "MaxPriority") == 0) HideMenuEntry = atoi(Value); + else if (strcmp(Name, "MinPriority") == 0) MinPriority = atoi(Value); + else if (strcmp(Name, "MaxPriority") == 0) MaxPriority = atoi(Value); else return false; return true; } |